From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mx.groups.io with SMTP id smtpd.web11.37431.1679929325988141376 for ; Mon, 27 Mar 2023 08:02:06 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=XWmrcfRl; spf=pass (domain: redhat.com, ip: 170.10.129.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1679929325; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=Xw0zb0JZvZACQQqOUcS9MoTuutrSm86S5HuRG+a6zgc=; b=XWmrcfRlq1TEgfjTqGGUarPgywFBgvVM3AagLuObqu7MVV2G2sCQtp27uPTi/oo4P6A3JI 4iimcYw5ydMBo+I5JcAdyR+d2K7U5GTOzPuSYCYIWDmWUZHXIsq7rBq99NeQA5typH+8ZV z+dtTBiy0zzpa21Uo09r/o4r6CfHJEg= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-149-db8WGxPjOC2oC5jIvgoE6Q-1; Mon, 27 Mar 2023 11:02:02 -0400 X-MC-Unique: db8WGxPjOC2oC5jIvgoE6Q-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id DDC49280A342; Mon, 27 Mar 2023 15:01:40 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.193.68]) by smtp.corp.redhat.com (Postfix) with ESMTPS id A441D492C18; Mon, 27 Mar 2023 15:01:40 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id C06811801B04; Mon, 27 Mar 2023 17:01:38 +0200 (CEST) From: "Gerd Hoffmann" To: devel@edk2.groups.io Cc: Pawel Polawski , Jiewen Yao , Ard Biesheuvel , Gerd Hoffmann , Oliver Steffen , Jordan Justen Subject: [PATCH 1/1] OvmfPkg/CI: Boot OVMF in SMP mode. Date: Mon, 27 Mar 2023 17:01:38 +0200 Message-Id: <20230327150138.425311-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.9 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true Increase the chance that CI finds bugs in MP changes. Signed-off-by: Gerd Hoffmann --- OvmfPkg/PlatformCI/PlatformBuildLib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OvmfPkg/PlatformCI/PlatformBuildLib.py b/OvmfPkg/PlatformCI/PlatformBuildLib.py index 58dc1189a2cc..1ff85fdc24bb 100644 --- a/OvmfPkg/PlatformCI/PlatformBuildLib.py +++ b/OvmfPkg/PlatformCI/PlatformBuildLib.py @@ -196,6 +196,7 @@ class PlatformBuilder( UefiBuilder, BuildSettingsManager): args = "-debugcon stdio" # write messages to stdio args += " -global isa-debugcon.iobase=0x402" # debug messages out thru virtual io port args += " -net none" # turn off network + args += " -smp 4" args += f" -drive file=fat:rw:{VirtualDrive},format=raw,media=disk" # Mount disk with startup.nsh if (self.env.GetValue("QEMU_HEADLESS").upper() == "TRUE"): @@ -204,7 +205,6 @@ class PlatformBuilder( UefiBuilder, BuildSettingsManager): if (self.env.GetBuildValue("SMM_REQUIRE") == "1"): args += " -machine q35,smm=on" #,accel=(tcg|kvm)" #args += " -m ..." - #args += " -smp ..." args += " -global driver=cfi.pflash01,property=secure,value=on" args += " -drive if=pflash,format=raw,unit=0,file=" + os.path.join(OutputPath_FV, "OVMF_CODE.fd") + ",readonly=on" args += " -drive if=pflash,format=raw,unit=1,file=" + os.path.join(OutputPath_FV, "OVMF_VARS.fd") -- 2.39.2