From: Anton Blanchard Date: Tue, 19 Apr 2011 01:54:50 +0000 (+1000) Subject: pseries: Increase maximum CPUs to 256 X-Git-Tag: v0.15.0-rc0~285^2~16 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=41019fecc83c466faeddbc6b3784a447516c03a7;p=qemu-xen-4.3-testing.git pseries: Increase maximum CPUs to 256 The original pSeries machine was limited to 32 CPUs, more or less arbitrarily. Particularly when we get SMT KVM guests it will be pretty easy to exceed this. Therefore, raise the max number of CPUs in a pseries machine guest to 256. Signed-off-by: Anton Blanchard Signed-off-by: David Gibson Signed-off-by: Alexander Graf --- diff --git a/hw/spapr.c b/hw/spapr.c index 1782cc0a9..67dd1e589 100644 --- a/hw/spapr.c +++ b/hw/spapr.c @@ -51,7 +51,7 @@ #define TIMEBASE_FREQ 512000000ULL -#define MAX_CPUS 32 +#define MAX_CPUS 256 #define XICS_IRQS 1024 sPAPREnvironment *spapr;