[PARISC] Simplify DISCONTIGMEM in Kconfig

parisc was previously displaying both the mm/Kconfig memory model
menu, and its own prompt. Remove prompt and have CONFIG_64BIT toggle
between DISCONTIGMEM and FLATMEM. Also remove the EXPERIMENTAL from
discontigmem support... It's been running fine for months (years?)
now.

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
This commit is contained in:
Kyle McMartin 2006-01-27 23:59:36 -07:00 committed by Kyle McMartin
parent f671c45df2
commit a2ba82cd7d

View File

@ -149,14 +149,20 @@ config HOTPLUG_CPU
default y if SMP default y if SMP
select HOTPLUG select HOTPLUG
config ARCH_SELECT_MEMORY_MODEL
def_bool y
depends on 64BIT
config ARCH_DISCONTIGMEM_ENABLE config ARCH_DISCONTIGMEM_ENABLE
bool "Discontiguous memory support (EXPERIMENTAL)" def_bool y
depends on 64BIT && EXPERIMENTAL depends on 64BIT
help
Say Y to support efficient handling of discontiguous physical memory, config ARCH_FLATMEM_ENABLE
for architectures which are either NUMA (Non-Uniform Memory Access) def_bool y
or have huge holes in the physical address space for other reasons.
See <file:Documentation/vm/numa> for more. config ARCH_DISCONTIGMEM_DEFAULT
def_bool y
depends on ARCH_DISCONTIGMEM_ENABLE
source "kernel/Kconfig.hz" source "kernel/Kconfig.hz"
source "mm/Kconfig" source "mm/Kconfig"