From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:45693) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QC0A6-0004P9-0Q for qemu-devel@nongnu.org; Mon, 18 Apr 2011 21:55:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QC0A5-00023R-9j for qemu-devel@nongnu.org; Mon, 18 Apr 2011 21:55:29 -0400 Received: from ozlabs.org ([203.10.76.45]:50807) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QC0A0-00022u-Bc for qemu-devel@nongnu.org; Mon, 18 Apr 2011 21:55:29 -0400 From: David Gibson Date: Tue, 19 Apr 2011 11:54:50 +1000 Message-Id: <1303178092-29891-2-git-send-email-david@gibson.dropbear.id.au> In-Reply-To: <1303178092-29891-1-git-send-email-david@gibson.dropbear.id.au> References: <1303178092-29891-1-git-send-email-david@gibson.dropbear.id.au> Subject: [Qemu-devel] [PATCH 1/3] pseries: Increase maximum CPUs to 256 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: agraf@suse.de, qemu-devel@nongnu.org Cc: paulus@samba.org, anton@samba.org From: Anton Blanchard 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 --- hw/spapr.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/spapr.c b/hw/spapr.c index 1782cc0..67dd1e5 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; -- 1.7.1