浏览代码

[PATCH] allow flatmem to be disabled when only sparsemem is implemented

On architectures that implement sparsemem but not discontigmem we want to
be able to hide the flatmem option in some cases.  On ppc64 for example,
when we select NUMA we must not select flatmem.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Andy Whitcroft <apw@shadowen.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Anton Blanchard 19 年之前
父节点
当前提交
c898ec16e8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      mm/Kconfig

+ 1 - 1
mm/Kconfig

@@ -11,7 +11,7 @@ choice
 
 
 config FLATMEM_MANUAL
 config FLATMEM_MANUAL
 	bool "Flat Memory"
 	bool "Flat Memory"
-	depends on !ARCH_DISCONTIGMEM_ENABLE || ARCH_FLATMEM_ENABLE
+	depends on !(ARCH_DISCONTIGMEM_ENABLE || ARCH_SPARSEMEM_ENABLE) || ARCH_FLATMEM_ENABLE
 	help
 	help
 	  This option allows you to change some of the ways that
 	  This option allows you to change some of the ways that
 	  Linux manages its memory internally.  Most users will
 	  Linux manages its memory internally.  Most users will