aboutsummaryrefslogtreecommitdiff
path: root/include/asm-x86/mpspec_def.h
diff options
context:
space:
mode:
authorJack Steiner <steiner@sgi.com>2008-06-16 12:09:10 -0500
committerIngo Molnar <mingo@elte.hu>2008-07-08 12:23:29 +0200
commitab9c0bb8a8c1d71dd303abdaa61ec496128e2fbe (patch)
tree14b13f5a6db120debd610c1387d37c629bad9481 /include/asm-x86/mpspec_def.h
parentb6df1b8bc1250191cfee15627697111c1cbda53f (diff)
x86: increase MAX_APICS for very large x86-64 configs
Increase the maximum number of apics when running very large configurations. This patch has no affect on most systems. The patch has no effect on any 32-bit kernel. It adds ~4k to the size of 64-bit kernels but only if NR_CPUS > 255. Signed-off-by: Jack Steiner <steiner@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/mpspec_def.h')
-rw-r--r--include/asm-x86/mpspec_def.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/asm-x86/mpspec_def.h b/include/asm-x86/mpspec_def.h
index dc6ef85e362..38d1e73b49e 100644
--- a/include/asm-x86/mpspec_def.h
+++ b/include/asm-x86/mpspec_def.h
@@ -17,10 +17,11 @@
# define MAX_MPC_ENTRY 1024
# define MAX_APICS 256
#else
-/*
- * A maximum of 255 APICs with the current APIC ID architecture.
- */
-# define MAX_APICS 255
+# if NR_CPUS <= 255
+# define MAX_APICS 255
+# else
+# define MAX_APICS 32768
+# endif
#endif
struct intel_mp_floating {