]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
x86/Kconfig: Always enable ARCH_SPARSEMEM_ENABLE
authorMateusz Jończyk <mat.jonczyk@o2.pl>
Fri, 21 Mar 2025 20:48:44 +0000 (21:48 +0100)
committerIngo Molnar <mingo@kernel.org>
Sat, 22 Mar 2025 07:02:16 +0000 (08:02 +0100)
It appears that (X86_64 || X86_32) is always true on x86.

This logical OR directive was introduced in:

  6ea3038648da ("arch/x86: remove depends on CONFIG_EXPERIMENTAL")

By (EXPERIMENTAL && X86_32) turning into (X86_32). Since
this change was an identity transformation, nobody noticed
that the condition turned into 'true'.

[ mingo: Updated changelog ]

Fixes: 6ea3038648da ("arch/x86: remove depends on CONFIG_EXPERIMENTAL")
Signed-off-by: Mateusz Jończyk <mat.jonczyk@o2.pl>
Signed-off-by: David Heideberg <david@ixit.cz>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Link: https://lore.kernel.org/r/20250321-x86_x2apic-v3-2-b0cbaa6fa338@ixit.cz
arch/x86/Kconfig

index 08bc939abc1306e2997b21ef606c89cc54a4fc7e..442936d864c66136081cc459e270b9bca4de4718 100644 (file)
@@ -1563,7 +1563,6 @@ config ARCH_FLATMEM_ENABLE
 
 config ARCH_SPARSEMEM_ENABLE
        def_bool y
-       depends on X86_64 || NUMA || X86_32
        select SPARSEMEM_STATIC if X86_32
        select SPARSEMEM_VMEMMAP_ENABLE if X86_64