From patchwork Fri Feb 24 04:55:31 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexey Kardashevskiy X-Patchwork-Id: 731894 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vTzNt2vm7z9s7R for ; Fri, 24 Feb 2017 15:57:16 +1100 (AEDT) Received: from localhost ([::1]:34622 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ch7wO-0007Oi-FS for incoming@patchwork.ozlabs.org; Thu, 23 Feb 2017 23:57:12 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54126) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ch7vP-0006aP-P6 for qemu-devel@nongnu.org; Thu, 23 Feb 2017 23:56:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ch7vM-0007wE-ON for qemu-devel@nongnu.org; Thu, 23 Feb 2017 23:56:11 -0500 Received: from ozlabs.ru ([107.173.13.209]:47872) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ch7vM-0007vQ-He; Thu, 23 Feb 2017 23:56:08 -0500 Received: from vpl2.ozlabs.ibm.com (localhost [IPv6:::1]) by ozlabs.ru (Postfix) with ESMTP id DF1D73A60395; Thu, 23 Feb 2017 23:55:24 -0500 (EST) From: Alexey Kardashevskiy To: qemu-devel@nongnu.org Date: Fri, 24 Feb 2017 15:55:31 +1100 Message-Id: <20170224045531.7026-1-aik@ozlabs.ru> X-Mailer: git-send-email 2.11.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 107.173.13.209 Subject: [Qemu-devel] [PATCH qemu] sysemu: support up to 1024 vCPUs X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Alexey Kardashevskiy , Greg Kurz , qemu-ppc@nongnu.org, Greg Kurz , David Gibson Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" From: Greg Kurz Some systems can already provide more than 255 hardware threads. Bumping the QEMU limit to 1024 seems reasonable: - it has no visible overhead in top; - the limit itself has no effect on hot paths. Cc: Greg Kurz Signed-off-by: Alexey Kardashevskiy --- With ulimit -u/-n bumped (nproc and nofile), I was able to boot a guest with 1024 CPUs, both with threads=1 and threads=8. It takes time though - 3:15 to get to the guest shell but it is probably expected on 160-threads machine. --- hw/ppc/spapr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index e465d7ac98..46b81a625d 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c @@ -2712,7 +2712,7 @@ static void spapr_machine_class_init(ObjectClass *oc, void *data) mc->init = ppc_spapr_init; mc->reset = ppc_spapr_reset; mc->block_default_type = IF_SCSI; - mc->max_cpus = 255; + mc->max_cpus = 1024; mc->no_parallel = 1; mc->default_boot_order = ""; mc->default_ram_size = 512 * M_BYTE;