x86/cpu: Increase max CPU count to 8192
authorJosh Boyer <jwboyer@redhat.com>
Tue, 5 Nov 2013 14:38:16 +0000 (09:38 -0500)
committerIngo Molnar <mingo@kernel.org>
Wed, 6 Nov 2013 07:16:34 +0000 (08:16 +0100)
The MAXSMP option is intended to enable silly large numbers of
CPUs for testing purposes.  The current value of 4096 isn't very
silly any longer as there are actual SGI machines that approach
6096 CPUs when taking HT into account.

Increase the value to a nice round 8192 to account for this and
allow for short term future increases.

Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org>
Cc: prarit@redhat.com
Cc: Russ Anderson <rja@sgi.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Link: http://lkml.kernel.org/r/20131105143816.GK9944@hansolo.jdub.homelinux.org
[ Tweaked it so that MAXSMP simply sets the maximum of the normal range. ]
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/Kconfig

index f03e428112eb10f8577e9a5c123cd98a43a7614c..805469a57d9da7b226a968cbc117d3cdf8230f13 100644 (file)
@@ -826,9 +826,9 @@ config NR_CPUS
        int "Maximum number of CPUs" if SMP && !MAXSMP
        range 2 8 if SMP && X86_32 && !X86_BIGSMP
        range 2 512 if SMP && !MAXSMP && !CPUMASK_OFFSTACK
-       range 2 4096 if SMP && !MAXSMP && CPUMASK_OFFSTACK && X86_64
+       range 2 8192 if SMP && !MAXSMP && CPUMASK_OFFSTACK && X86_64
        default "1" if !SMP
-       default "4096" if MAXSMP
+       default "8192" if MAXSMP
        default "32" if SMP && (X86_NUMAQ || X86_SUMMIT || X86_BIGSMP || X86_ES7000)
        default "8" if SMP
        ---help---