From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web11.59281.1680279064259614555 for ; Fri, 31 Mar 2023 09:11:04 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=Xk0l9hrl; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.201.8.94]) by linux.microsoft.com (Postfix) with ESMTPSA id E24EF20FFC93; Fri, 31 Mar 2023 09:11:02 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com E24EF20FFC93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1680279063; bh=wynkLWLTe9AZBbN3X2/RMEeH99Xymv331rwTkxve8XQ=; h=From:To:Cc:Subject:Date:From; b=Xk0l9hrlXokqDjKxFGK8feVDEsqb4dBL6ES+cPtDNUmFQn7NaeaIhE9InSXCRUxwl I84H7ehWdm3EKoMT8TiTWfRWvEXtSps2kdDGRjyx+KqhMF0ulUoF+L+ATmLoJgLkYP f/uDnW0+pXpUh4cxTnmbyLwZQuqAuZWnIfM28EL8= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Jiewen Yao , Jordan Justen , Gerd Hoffmann , Michael D Kinney Subject: [PATCH v1 1/1] OvmfPkg/CI: Revert SMP mode Date: Fri, 31 Mar 2023 12:10:43 -0400 Message-Id: <20230331161043.191-1-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.40.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki This is causing excessive boot times in the VS2019 IA32/X64 Full run to shell tasks (> 2 minutes) and blocking all edk2 CI. This patch removes the change so it can be root caused separately without blocking other patches unrelated to OVMF. Reverts f92a9dce10281c103b04d6b38283e0ff1d677b91 Cc: Ard Biesheuvel Cc: Jiewen Yao Cc: Jordan Justen Cc: Gerd Hoffmann Cc: Michael D Kinney Signed-off-by: Michael Kubacki --- OvmfPkg/PlatformCI/PlatformBuildLib.py | 1 - 1 file changed, 1 deletion(-) diff --git a/OvmfPkg/PlatformCI/PlatformBuildLib.py b/OvmfPkg/PlatformCI/= PlatformBuildLib.py index 1ff85fdc24bb..64fca48a7d1d 100644 --- a/OvmfPkg/PlatformCI/PlatformBuildLib.py +++ b/OvmfPkg/PlatformCI/PlatformBuildLib.py @@ -196,7 +196,6 @@ class PlatformBuilder( UefiBuilder, BuildSettingsMana= ger): args =3D "-debugcon stdio" = # write messages to stdio args +=3D " -global isa-debugcon.iobase=3D0x402" = # debug messages out thru virtual io port args +=3D " -net none" = # turn off network - args +=3D " -smp 4" args +=3D f" -drive file=3Dfat:rw:{VirtualDrive},format=3Draw,me= dia=3Ddisk" # Mount disk with startup.nsh =20 if (self.env.GetValue("QEMU_HEADLESS").upper() =3D=3D "TRUE"): --=20 2.40.0.windows.1