From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 716BFE7316F for ; Mon, 2 Feb 2026 19:33:34 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.1219049.1527916 (Exim 4.92) (envelope-from ) id 1vmzfm-0003RX-DG; Mon, 02 Feb 2026 19:33:22 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 1219049.1527916; Mon, 02 Feb 2026 19:33:22 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1vmzfm-0003RQ-AF; Mon, 02 Feb 2026 19:33:22 +0000 Received: by outflank-mailman (input) for mailman id 1219049; Mon, 02 Feb 2026 19:33:21 +0000 Received: from mail.xenproject.org ([104.130.215.37]) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1vmzfl-0003RK-C7 for xen-devel@lists.xenproject.org; Mon, 02 Feb 2026 19:33:21 +0000 Received: from xenbits.xenproject.org ([104.239.192.120]) by mail.xenproject.org with esmtp (Exim 4.96) (envelope-from ) id 1vmzfl-00H77H-0g; Mon, 02 Feb 2026 19:33:20 +0000 Received: from [140.209.201.102] (helo=localhost) by xenbits.xenproject.org with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vmzfk-00EHaV-1o; Mon, 02 Feb 2026 19:33:20 +0000 X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xen.org; s=20200302mail; h=Content-Transfer-Encoding:MIME-Version:Message-ID:Date: Subject:Cc:To:From; bh=22z1W8ArJdHHeBbTucgXt39+2PIybp7ytLowPDqnvIU=; b=bNz3ON 9bySzHKbGNlMiA/4KzLiM+GpaJGQ/YmBNXnQC5TTa0klCqO9jViG4tcGXR2doSXOqKtaQU1oPtsvL pVu5iF8EMk/iGN8uysRu/KsPlVMvF8E6wwt4sbUzXCxdz2rhWEwNNLscth5AfruKulof8k0MCKXFm 00sHobB+Lsg=; From: dmukhin@xen.org To: xen-devel@lists.xenproject.org Cc: andrew.cooper3@citrix.com, anthony.perard@vates.tech, jbeulich@suse.com, julien@xen.org, michal.orzel@amd.com, roger.pau@citrix.com, sstabellini@kernel.org, dmukhin@ford.com Subject: [PATCH v1] automation: align XTF qemu parameters across achitectures Date: Mon, 2 Feb 2026 11:32:31 -0800 Message-ID: <20260202193230.21412-2-dmukhin@ford.com> X-Mailer: git-send-email 2.52.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Denis Mukhin It is handy to have 2 CPUs and more RAM for smoke testing a hypervisor change via XTF. Align x86 QEMU configuration with Arm for XTF tests: 2 CPU and 2G of RAM. Signed-off-by: Denis Mukhin --- automation/scripts/include/xtf-x86-64 | 3 ++- automation/scripts/include/xtf-x86-64-efi | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/automation/scripts/include/xtf-x86-64 b/automation/scripts/include/xtf-x86-64 index b1b0cc201efa..186f074bd8eb 100644 --- a/automation/scripts/include/xtf-x86-64 +++ b/automation/scripts/include/xtf-x86-64 @@ -23,7 +23,8 @@ function xtf_arch_setup() -nographic \ -monitor none \ -serial stdio \ - -m 512 \ + -m 2048 \ + -smp 2 \ -kernel ${XEN_BINARY} \ -initrd ${XTF_BINARY} \ -append \"${XEN_CMDLINE}\" \ diff --git a/automation/scripts/include/xtf-x86-64-efi b/automation/scripts/include/xtf-x86-64-efi index 8340c745dbf4..15c6463dcdc5 100644 --- a/automation/scripts/include/xtf-x86-64-efi +++ b/automation/scripts/include/xtf-x86-64-efi @@ -49,7 +49,8 @@ EOF -nographic \ -monitor none \ -serial stdio \ - -m 512 \ + -m 2048 \ + -smp 2 \ -M q35,kernel-irqchip=split \ -drive if=pflash,format=raw,readonly=on,file=${FW_PREFIX}OVMF_CODE${suff}.fd \ -drive if=pflash,format=raw,file=${WORKDIR}/OVMF_VARS${suff}.fd \ -- 2.52.0