diff options
author | Michael Neuling <mikey@neuling.org> | 2009-05-17 15:13:16 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-06-02 10:32:24 +1000 |
commit | 2d8ae638bb86a3c7e8a7e610ec5ae545327d146a (patch) | |
tree | 80a70aaf6aada095eeb47be532b236ea9ebf6ef1 | |
parent | 435462c6e639065460e91903d6bd2af0f5762fde (diff) | |
download | blackbird-obmc-linux-2d8ae638bb86a3c7e8a7e610ec5ae545327d146a.tar.gz blackbird-obmc-linux-2d8ae638bb86a3c7e8a7e610ec5ae545327d146a.zip |
powerpc: Make the NR_CPUS max 8192
We can compile and boot with NR_CPUS=8192, so make this the max. 1024
was an arbitrary decision anyway.
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r-- | arch/powerpc/platforms/Kconfig.cputype | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/Kconfig.cputype b/arch/powerpc/platforms/Kconfig.cputype index 9da795e49337..915a7ac6a91a 100644 --- a/arch/powerpc/platforms/Kconfig.cputype +++ b/arch/powerpc/platforms/Kconfig.cputype @@ -262,8 +262,8 @@ config SMP If you don't know what to do here, say N. config NR_CPUS - int "Maximum number of CPUs (2-1024)" - range 2 1024 + int "Maximum number of CPUs (2-8192)" + range 2 8192 depends on SMP default "32" if PPC64 default "4" |