aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-03-09 09:54:39 +0000
committerKeir Fraser <keir.fraser@citrix.com>2010-03-09 09:54:39 +0000
commit60440d9af3a721d9dc05f7cfd455624c0c328dfc (patch)
treeaeb156d1474b05ab8f97658fea381533e392cbc1
parent28a42687217c1db8637eee7000243a44f426e911 (diff)
downloadxen-60440d9af3a721d9dc05f7cfd455624c0c328dfc.tar.gz
xen-60440d9af3a721d9dc05f7cfd455624c0c328dfc.tar.bz2
xen-60440d9af3a721d9dc05f7cfd455624c0c328dfc.zip
x86: Increase the default NR_CPUS to 128.
We have newer systems which have more than 64 CPUs, and users often complain some cpus can't be waken up when play with Xen. Certainly, MAX_PHYS_CPUS option also can support more CPUs, but it is still inconvenient for them, so change the default value to 128. Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
-rw-r--r--xen/include/asm-x86/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/asm-x86/config.h b/xen/include/asm-x86/config.h
index 76539359c5..898ad6a1c6 100644
--- a/xen/include/asm-x86/config.h
+++ b/xen/include/asm-x86/config.h
@@ -49,7 +49,7 @@
#ifdef MAX_PHYS_CPUS
#define NR_CPUS MAX_PHYS_CPUS
#else
-#define NR_CPUS 64
+#define NR_CPUS 128
#endif
#ifdef __i386__