NUMA_EMU depends on NUMA. NUMA depends on (X86_64 || (X86_32 && ( list of extended platforms))). This forced enabling an extended platform when using numa emulation on x86_32, which is silly. Remoing the list of extended platforms (plus EXPERIMENTAL) results in NUMA depending on X86_64 || X86_32, so simply remove all dependencies from (except SMP) from NUMA. Signed-off-by: Cody P Schafer <cody@xxxxxxxxxxxxxxxxxx> --- arch/x86/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 6a93833..58cd8fb 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -1228,7 +1228,6 @@ config DIRECT_GBPAGES config NUMA bool "Numa Memory Allocation and Scheduler Support" depends on SMP - depends on X86_64 || (X86_32 && HIGHMEM64G && (X86_NUMAQ || X86_BIGSMP || X86_SUMMIT && ACPI)) default y if (X86_NUMAQ || X86_SUMMIT || X86_BIGSMP) ---help--- Enable NUMA (Non Uniform Memory Access) support. -- 1.8.1.1 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>