Skip to content

Commit

Permalink
[PARISC] Simplify DISCONTIGMEM in Kconfig
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kyle McMartin authored and Kyle McMartin committed Jan 30, 2006
1 parent f671c45 commit a2ba82c
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions arch/parisc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,20 @@ config HOTPLUG_CPU
default y if SMP
select HOTPLUG

config ARCH_SELECT_MEMORY_MODEL
def_bool y
depends on 64BIT

config ARCH_DISCONTIGMEM_ENABLE
bool "Discontiguous memory support (EXPERIMENTAL)"
depends on 64BIT && EXPERIMENTAL
help
Say Y to support efficient handling of discontiguous physical memory,
for architectures which are either NUMA (Non-Uniform Memory Access)
or have huge holes in the physical address space for other reasons.
See <file:Documentation/vm/numa> for more.
def_bool y
depends on 64BIT

config ARCH_FLATMEM_ENABLE
def_bool y

config ARCH_DISCONTIGMEM_DEFAULT
def_bool y
depends on ARCH_DISCONTIGMEM_ENABLE

source "kernel/Kconfig.hz"
source "mm/Kconfig"
Expand Down

0 comments on commit a2ba82c

Please sign in to comment.