diff options
author | Mike Rapoport <rppt@linux.ibm.com> | 2019-04-24 16:24:12 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2019-04-25 09:02:18 +0200 |
commit | 2792107dc3af29ecc1a9b3dc5bc873dac4b61cd6 (patch) | |
tree | 92c53b1d353a9c7b4a8897a8453138c3ee1729d4 | |
parent | x86/Kconfig: Make SPARSEMEM default for 32-bit x86 (diff) | |
download | linux-dev-2792107dc3af29ecc1a9b3dc5bc873dac4b61cd6.tar.xz linux-dev-2792107dc3af29ecc1a9b3dc5bc873dac4b61cd6.zip |
x86/Kconfig: Deprecate DISCONTIGMEM support for 32-bit x86
Mel Gorman says:
"32-bit NUMA systems should be non-existent in practice. The last NUMA
system I'm aware of that was both NUMA and 32-bit only died somewhere
between 2004 and 2007. If someone is running a 64-bit capable system in
32-bit mode with NUMA, they really are just punishing themselves for fun."
Mark DISCONTIGMEM broken for now as suggested by Christoph Hellwig,
and (hopefully) remove it in a couple of releases.
Suggested-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
Acked-by: Mel Gorman <mgorman@techsingularity.net>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Rik van Riel <riel@surriel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-mm@kvack.org
Link: http://lkml.kernel.org/r/1556112252-9339-3-git-send-email-rppt@linux.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 0b91756ed980..335d6e37f151 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -1606,8 +1606,9 @@ config ARCH_FLATMEM_ENABLE depends on X86_32 && !NUMA config ARCH_DISCONTIGMEM_ENABLE - def_bool y + def_bool n depends on NUMA && X86_32 + depends on BROKEN config ARCH_SPARSEMEM_ENABLE def_bool y |