From: Michael Neuling Date: Sun, 17 May 2009 15:13:16 +0000 (+0000) Subject: powerpc: Make the NR_CPUS max 8192 X-Git-Tag: MMI-PSA29.97-13-9~27693^2~102 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2d8ae638bb86a3c7e8a7e610ec5ae545327d146a;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git 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 Signed-off-by: Benjamin Herrenschmidt --- 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"