From nobody Fri Jul 24 05:23:08 2026 Received: from mailgw.kylinos.cn (mailgw.kylinos.cn [124.126.103.232]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 67DD13A450C for ; Thu, 23 Jul 2026 05:50:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=124.126.103.232 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784785844; cv=none; b=jreSo5dXXBSRl+2ZrozWbAgQD4Vng7Ew28XXajeg4JmFFPcvPXfCG2Eb3Sy7xTseG4TfaWetgPWa07ie37GM0W8IB3y/82auYl6LwyZ8cRXujPLhtUDL3HEphWiQghxIh3tIr58ggHU0eO5RqV62bBXftjkhvdqT9kfzRQuCkwE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784785844; c=relaxed/simple; bh=6lmvZI4WRuedwN99o6tiuMRzEAIYAr7zweA2+dLTs0o=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=UxIWhcn+IDhn/G0c3e9djOU4mrKWz5haS6pwkb8jZowu+zhME67mDdU3xztRcSwYnC5l0CNelWs0sguc1Zb/q5bTFGx1ZftuUUeN3ByvWNrOFb/M+X3rPTNPA3Pe9Tg97QDvOMlp1SragLpNR1Wt8mhetYWY+jznbdK/sGkQa5E= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=kylinos.cn; spf=pass smtp.mailfrom=kylinos.cn; arc=none smtp.client-ip=124.126.103.232 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=kylinos.cn Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=kylinos.cn X-UUID: 67f9fdb8865a11f1aa26b74ffac11d73-20260723 X-CID-P-RULE: Release_Ham X-CID-O-INFO: VERSION:1.3.12,REQID:f3d14cd6-c6a8-4df8-8c7e-c8f6ea198ec2,IP:0,U RL:0,TC:0,Content:-5,EDM:0,RT:0,SF:0,FILE:0,BULK:0,RULE:Release_Ham,ACTION :release,TS:-5 X-CID-META: VersionHash:e7bac3a,CLOUDID:b8ad9f41507f7a858da2b03916212512,BulkI D:nil,BulkQuantity:0,Recheck:0,SF:102|850|865|898,TC:nil,Content:0|15|50,E DM:-3,IP:nil,URL:0,File:nil,RT:nil,Bulk:nil,QS:nil,BEC:nil,COL:0,OSI:0,OSA :0,AV:0,LES:1,SPR:NO,DKR:0,DKP:0,BRR:0,BRE:0,ARC:0 X-CID-BVR: 2,SSN|SDN X-CID-BAS: 2,SSN|SDN,0,_ X-CID-FACTOR: TF_CID_SPAM_SNR X-CID-RHF: D41D8CD98F00B204E9800998ECF8427E X-UUID: 67f9fdb8865a11f1aa26b74ffac11d73-20260723 X-User: huangbing@kylinos.cn Received: from localhost.localdomain [(10.44.16.150)] by mailgw.kylinos.cn (envelope-from ) (Generic MTA with TLSv1.3 TLS_AES_256_GCM_SHA384 256/256) with ESMTP id 761698574; Thu, 23 Jul 2026 13:50:27 +0800 From: Bing Huang To: Peter Zijlstra , Ingo Molnar , Mel Gorman Cc: Chen Yu , Tim Chen , Bing Huang , linux-kernel@vger.kernel.org Subject: [PATCH] init/Kconfig: Move NUMA_BALANCING_DEFAULT_ENABLED next to NUMA_BALANCING Date: Thu, 23 Jul 2026 13:50:06 +0800 Message-Id: <20260723055006.390417-1-huangbing@kylinos.cn> X-Mailer: git-send-email 2.25.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The NUMA_BALANCING_DEFAULT_ENABLED config option is semantically related to NUMA_BALANCING. Move it directly after its parent option so they are grouped together, improving readability. No functional change. Signed-off-by: Bing Huang Reviewed-by: Julian Braha --- init/Kconfig | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/init/Kconfig b/init/Kconfig index 53178ea4bc93..68f259fea239 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -1019,6 +1019,14 @@ config NUMA_BALANCING =20 This system will be inactive on UMA systems. =20 +config NUMA_BALANCING_DEFAULT_ENABLED + bool "Automatically enable NUMA aware memory/task placement" + default y + depends on NUMA_BALANCING + help + If set, automatic NUMA balancing will be enabled if running on a NUMA + machine. + config SCHED_CACHE bool "Cache aware load balance" default y @@ -1030,14 +1038,6 @@ config SCHED_CACHE resources within the same cache domain, reducing cache misses and lowering data access latency. =20 -config NUMA_BALANCING_DEFAULT_ENABLED - bool "Automatically enable NUMA aware memory/task placement" - default y - depends on NUMA_BALANCING - help - If set, automatic NUMA balancing will be enabled if running on a NUMA - machine. - config SLAB_OBJ_EXT bool =20 --=20 2.25.1