From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by mx.groups.io with SMTP id smtpd.web10.59429.1680279228721535709 for ; Fri, 31 Mar 2023 09:13:49 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=hqJzAEBC; spf=pass (domain: kernel.org, ip: 145.40.68.75, mailfrom: ardb@kernel.org) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 43951B830D4 for ; Fri, 31 Mar 2023 16:13:46 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E6366C4339C for ; Fri, 31 Mar 2023 16:13:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1680279225; bh=LV9HD4JEP1vgntJHw1oPEvn8gjaM+E8rE/SSYLuVyC4=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=hqJzAEBC2Ot4vX2VBI+iO3sR/Ws6JtiKBVDaOak5xxd8RCYvoH/zwWqcr+SuBaLWe MQNY31tVCLpSkXi4kE2tjpKF71E9x+V6ZfTQOsApss2/3MU/VSKuYjqoEFyxlOJi6X HzCfLN8n0NRZwlvwHgibnkKhwIS6J9OuCreeitrKuajd31ZKi3D5urq7A4/sloGyxA gV19kBS80WH278++zXWsO+p2Da8u7QUCeaE4qsXLqVr/2tKqOIZ984sPU56a3eZ3X8 tcci13E8O3sn6G7vabKOKIs+Lca4qKNf2YKKS5RLVMD/eu1XUcaQoP7x3pcgbnvduu vrHvRCLGrEfsA== Received: by mail-lj1-f179.google.com with SMTP id z42so23566638ljq.13 for ; Fri, 31 Mar 2023 09:13:45 -0700 (PDT) X-Gm-Message-State: AAQBX9f0zti8RyTh3IjhmIdzE+UdKgsD4YE8b7V/ucEoh4XsXN3TdPIL bCnHeJKWV73VSdrlNC9qET978ygpfJhZ6ZmWVKc= X-Google-Smtp-Source: AKy350bneB/1P6SeXLTNYfo1RKbvsFHbO+MUfN9B1nb7dmjK0rmIcOFUsbqvoJzyL/NgZK9d4u+L1BKrCDzbqO938y0= X-Received: by 2002:a2e:84c1:0:b0:2a5:f850:c356 with SMTP id q1-20020a2e84c1000000b002a5f850c356mr5787264ljh.2.1680279223954; Fri, 31 Mar 2023 09:13:43 -0700 (PDT) MIME-Version: 1.0 References: <20230331161043.191-1-mikuback@linux.microsoft.com> In-Reply-To: <20230331161043.191-1-mikuback@linux.microsoft.com> From: "Ard Biesheuvel" Date: Fri, 31 Mar 2023 18:13:32 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-devel] [PATCH v1 1/1] OvmfPkg/CI: Revert SMP mode To: devel@edk2.groups.io, mikuback@linux.microsoft.com Cc: Ard Biesheuvel , Jiewen Yao , Jordan Justen , Gerd Hoffmann , Michael D Kinney Content-Type: text/plain; charset="UTF-8" On Fri, 31 Mar 2023 at 18:11, Michael Kubacki wrote: > > 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, 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"): Thanks for the fixed Queued up as #4220