diff options
| author | Kyle McMartin <kyle@parisc-linux.org> | 2006-01-28 01:59:36 -0500 |
|---|---|---|
| committer | Kyle McMartin <kyle@quicksilver.road.mcmartin.ca> | 2006-01-29 19:33:40 -0500 |
| commit | a2ba82cd7de281721a875a73a5a5894882760fab (patch) | |
| tree | dd38f58c17a6a6b0630bbff13d8efeeae9979dad | |
| parent | f671c45df23005692daa200aba768c642fb14ef2 (diff) | |
[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>
| -rw-r--r-- | arch/parisc/Kconfig | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/arch/parisc/Kconfig b/arch/parisc/Kconfig index e77a06e9621e..7c914a4c67c3 100644 --- a/arch/parisc/Kconfig +++ b/arch/parisc/Kconfig | |||
| @@ -149,14 +149,20 @@ config HOTPLUG_CPU | |||
| 149 | default y if SMP | 149 | default y if SMP |
| 150 | select HOTPLUG | 150 | select HOTPLUG |
| 151 | 151 | ||
| 152 | config ARCH_SELECT_MEMORY_MODEL | ||
| 153 | def_bool y | ||
| 154 | depends on 64BIT | ||
| 155 | |||
| 152 | config ARCH_DISCONTIGMEM_ENABLE | 156 | config ARCH_DISCONTIGMEM_ENABLE |
| 153 | bool "Discontiguous memory support (EXPERIMENTAL)" | 157 | def_bool y |
| 154 | depends on 64BIT && EXPERIMENTAL | 158 | depends on 64BIT |
| 155 | help | 159 | |
| 156 | Say Y to support efficient handling of discontiguous physical memory, | 160 | config ARCH_FLATMEM_ENABLE |
| 157 | for architectures which are either NUMA (Non-Uniform Memory Access) | 161 | def_bool y |
| 158 | or have huge holes in the physical address space for other reasons. | 162 | |
| 159 | See <file:Documentation/vm/numa> for more. | 163 | config ARCH_DISCONTIGMEM_DEFAULT |
| 164 | def_bool y | ||
| 165 | depends on ARCH_DISCONTIGMEM_ENABLE | ||
| 160 | 166 | ||
| 161 | source "kernel/Kconfig.hz" | 167 | source "kernel/Kconfig.hz" |
| 162 | source "mm/Kconfig" | 168 | source "mm/Kconfig" |
