aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc64/Kconfig
diff options
context:
space:
mode:
authorAndy Whitcroft <apw@shadowen.org>2005-10-28 20:46:58 -0400
committerPaul Mackerras <paulus@samba.org>2005-10-29 01:27:39 -0400
commitffa27b6bc61c3be76a756100f777372768bcc3ab (patch)
treee4c65417db61080f69c4a057cdb2e06ae7dc1bd3 /arch/ppc64/Kconfig
parentea6526605a60cf9a6f758605f73062fac6d974cf (diff)
[PATCH] ppc64 memory model depends on NUMA
Currently when we first select memory model (FLAT, DISCONTIG, SPARSE) then select whether the machine is NUMA. However NUMA systems may not be FLAT. This constraint it not honoured and we may configure a NUMA/FLAT system. Reorder the configuration such that we choose NUMA first which allows us to only list the memory models which are valid. We now default NUMA for known NUMA systems. Note that this new order also matches that used in x86. Signed-off-by: Andy Whitcroft <apw@shadowen.org> Signed-off-by: Joel Schopp <jschopp@austin.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc64/Kconfig')
-rw-r--r--arch/ppc64/Kconfig11
1 files changed, 4 insertions, 7 deletions
diff --git a/arch/ppc64/Kconfig b/arch/ppc64/Kconfig
index b889277ab7de..42677cc96508 100644
--- a/arch/ppc64/Kconfig
+++ b/arch/ppc64/Kconfig
@@ -248,6 +248,10 @@ config HMT
248 This option enables hardware multithreading on RS64 cpus. 248 This option enables hardware multithreading on RS64 cpus.
249 pSeries systems p620 and p660 have such a cpu type. 249 pSeries systems p620 and p660 have such a cpu type.
250 250
251config NUMA
252 bool "NUMA support"
253 default y if SMP && PPC_PSERIES
254
251config ARCH_SELECT_MEMORY_MODEL 255config ARCH_SELECT_MEMORY_MODEL
252 def_bool y 256 def_bool y
253 257
@@ -263,9 +267,6 @@ config ARCH_DISCONTIGMEM_DEFAULT
263 def_bool y 267 def_bool y
264 depends on ARCH_DISCONTIGMEM_ENABLE 268 depends on ARCH_DISCONTIGMEM_ENABLE
265 269
266config ARCH_FLATMEM_ENABLE
267 def_bool y
268
269config ARCH_SPARSEMEM_ENABLE 270config ARCH_SPARSEMEM_ENABLE
270 def_bool y 271 def_bool y
271 depends on ARCH_DISCONTIGMEM_ENABLE 272 depends on ARCH_DISCONTIGMEM_ENABLE
@@ -288,10 +289,6 @@ config NODES_SPAN_OTHER_NODES
288 def_bool y 289 def_bool y
289 depends on NEED_MULTIPLE_NODES 290 depends on NEED_MULTIPLE_NODES
290 291
291config NUMA
292 bool "NUMA support"
293 default y if DISCONTIGMEM || SPARSEMEM
294
295config SCHED_SMT 292config SCHED_SMT
296 bool "SMT (Hyperthreading) scheduler support" 293 bool "SMT (Hyperthreading) scheduler support"
297 depends on SMP 294 depends on SMP