[edk2-devel] [PATCH 2/2] UefiCpuPkg: Has APs in 64 bit long-mode before booting to OS.

2022-12-13 Thread Yuanhao Xie
During the finalization of Mp initialization before booting into the OS, depending on whether Mwait is supported or not, AsmRelocateApLoop places Aps in MWAIT-loop or HLT-loop. Since paging is necessary for long mode, the original implementation of moving APs to 32-bit was to disable paging to

[edk2-devel] [PATCH 1/2] UefiCpuPkg: Duplicated AsmRelocateApLoop as AsmRelocateApLoopAmd

2022-12-13 Thread Yuanhao Xie
AsmRelocateApLoop is replicated for future Intel Logic Extraction, further brings AP into 64-bit, and enables paging. Signed-off-by: Yuanhao Xie --- UefiCpuPkg/Library/MpInitLib/DxeMpLib.c | 51 +++ UefiCpuPkg/Library/MpInitLib/MpEqu.inc

[edk2-devel] UefiCpuPkg: Has APs in 64 bit long-mode before booting to OS.

2022-12-13 Thread Yuanhao Xie
Yuanhao Xie (2): UefiCpuPkg: Duplicated AsmRelocateApLoop as AsmRelocateApLoopAmd UefiCpuPkg: Has APs in 64 bit long-mode before booting to OS. UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf | 1 + UefiCpuPkg/Library/MpInitLib/DxeMpLib.c | 168

Re: [edk2-devel] [PATCH] UefiPayloadPkg/SerialPortLib: Enhance multi port behaviour

2022-12-13 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Sravanthi, K KavyaX Sent: Wednesday, December 14, 2022 3:20 PM To: devel@edk2.groups.io Cc: Sravanthi, K KavyaX ; Dong, Guo ; Ni, Ray ; Lu, James ; Guo, Gua Subject: [PATCH] UefiPayloadPkg/SerialPortLib: Enhance multi port behaviour

[edk2-devel] [PATCH] UefiPayloadPkg/SerialPortLib: Enhance multi port behaviour

2022-12-13 Thread Kavya
Add condition to return success if mUartCount is greater than zero in SerialPortInitialize() to avoid filling mUartInfo with the same hob data when SerialPortInitialize() is called multiple times. Also add proper conditions in SerialPortRead function to read the data properly from multiple UART's.

[edk2-devel] [PATCH V1 2/3] OvmfPkg/TdTcg2Dxe: Fix the mapping error between PCR index and MR index

2022-12-13 Thread Min Xu
From: Min M Xu BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4179 According to UEFI Spec 2.10 it is supposed to return the mapping from PCR index to CC MR index: // // In the current version, we use the below mapping for TDX: // // TPM PCR Index | CC Measurement Register Index |

[edk2-devel] [PATCH V1 3/3] OvmfPkg/SecTpmMeasurementLib: Fix the mapping error of PCR and RTMR index

2022-12-13 Thread Min Xu
From: Min M Xu BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4179 TDVF has the feature to do RTMR measurement in SEC phase. In the same time it builds a GUID hob which carries the hash value of the measurement so that in DXE phase a td event can be created based on this GUID Hob. There is

[edk2-devel] [PATCH V1 1/3] OvmfPkg/TdTcg2Dxe: Fix incorrect protocol and structure version

2022-12-13 Thread Min Xu
From: Min M Xu BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4184 According to the Uefi spec 2.10 Section 38.2.2. EFI_CC_MEASUREMENT_PROTOCOL.GetCapability, the minor version of StructureVersion and ProtocolVersion should be 0. Cc: Erdem Aktas [ruleof2] Cc: James Bottomley [jejb] Cc:

[edk2-devel] [PATCH V1 0/3] Fix incorrect implementation in CcMeasurement

2022-12-13 Thread Min Xu
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4179 BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4184 This patch-set fix the incorrect implementation in CcMeasurement. Patch#1: Incorrect protocol and structure version Patch#2/3: Incorrect mapping between TPM PCR index and TDX

Re: [edk2-devel] [PATCH] OvmfPkg/PlatformInitLib: Fix integrity checking failed of NvVarStore in some cases

2022-12-13 Thread Yao, Jiewen
Hey Good catch! I think we need handle below valid cases: 1. VAR_HEADER_VALID_ONLY (0x7F) <-- Header added (*) 2. VAR_ADDED (0x3F) <-- Header + data added 3. VAR_ADDED & VAR_IN_DELETED_TRANSITION (0x3E) <-- marked as deleted, but still valid, before new data is added. (*) 4. VAR_ADDED &

Re: [edk2-devel] [PATCH] OvmfPkg/PlatformInitLib: Fix integrity checking failed of NvVarStore in some cases

2022-12-13 Thread Gerd Hoffmann
Hi, > When the variable store has those variables, then system booting/rebooting > will > hangs in a ASSERT: > > NvVarStore Variable header State was invalid. > ASSERT > /mnt/working/source_code-git/edk2/OvmfPkg/Library/PlatformInitLib/Platform.c(819): > ((BOOLEAN)(0==1)) I'm wondering how

Re: [edk2-devel] [PATCH v1 0/5] Update references to new edk2 build instructions

2022-12-13 Thread Gerd Hoffmann
On Mon, Dec 12, 2022 at 10:38:46PM -0500, Michael Kubacki wrote: > Hi all, > > I still need reviews on this series. It should only take a few minutes of > your time. > > The TianoCore wiki changes that these changes link to are available now - >

Re: [edk2-devel] 回复: [edk2-devel] 回复: [edk2-devel] FW: [PATCH] ShellPkg: Displaying SMBIOS Type38 fields in formatted manner

2022-12-13 Thread Prakash K via groups.io
Hi Gaoliming, I have updated the commit message title with the package name. Commit Message Title - " *ShellPkg: Displaying SMBIOS Type38 fields in formatted manner":* ** Kindly let us know if we need to make any changes. ** Thanks, Prakash K -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You

[edk2-devel] [PATCH v6 3/3] .azurepipelines: Install code coverage tool

2022-12-13 Thread Guo, Gua
From: Gua Guo For Windows add below tool for code coverage 1. OpenCppCoverage: parsing pdb file to generate coverage data 2. pycobertura: show up html format data for coverage data For Linux add below tool for code coverage 1. lcov: parsing gcda gcno file to generate coverage data 2.

[edk2-devel] [PATCH v6 2/3] BaseTools/Plugin: Add coverage support for Unit Test

2022-12-13 Thread Guo, Gua
From: Gua Guo For GCC, use lcov to generate Unit Test code coverage report For VS2019, use OpenCppCoverage to generate code coverage report Cc: Bob Feng Cc: Bret Barkelew Cc: Liming Gao Cc: Michael D Kinney Cc: Sean Brogan Signed-off-by: Gua Guo --- .../HostBasedUnitTestRunner.py

[edk2-devel] [PATCH v6 0/3] Add code coverage support for GCC/MSVC

2022-12-13 Thread Guo, Gua
From: Gua Guo V1: Add coverage option for GCC V2: Add ReadMe.md for how to generate coverage report V3: Add VS2019 and GCC code coverage support V4: Add VS2019 and GCC Azure CI/CD support V5: Fix some typo and some flow issue V6: Remove html coverage information - Due to python 3.11 install

[edk2-devel] [PATCH v6 1/3] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-12-13 Thread Guo, Gua
From: Gua Guo In order to collect code coverage after running executable file, generate *.gcda and *.gcno file that require by lcov tool to generate code coverage report. Cc: Michael D Kinney Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael Kubacki Signed-off-by: Gua Guo ---

Re: [edk2-devel] [PATCH] UnitTestFrameworkPkg: Modify APIs in UnitTestPersistenceLib

2022-12-13 Thread Michael Kubacki
Reviewed-by: Michael Kubacki On 12/12/2022 2:32 AM, Zhiguang Liu wrote: Hi UnitTestFrameworkPkg Maintainers and reviewers, Could you help review this patch? Thanks Zhiguang -Original Message- From: devel@edk2.groups.io On Behalf Of Zhiguang Liu Sent: Tuesday, December 6, 2022 1:26

Re: [edk2-devel] [PATCH V2 1/4] OvmfPkg/IoMmuDxe: Reserve shared memory region for DMA operation

2022-12-13 Thread Min Xu
On December 14, 2022 12:04 AM, Lendacky, Thomas wrote: > > On 12/12/22 23:48, Min Xu wrote: > > From: Min M Xu > > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4171 > > > > This patch causes crashes for SEV guests and breaks bisect-ability of the > EDK2 tree. See below... > > > /** > >

Re: [edk2-devel] [PATCH] UnitTestFrameworkPkg: Modify APIs in UnitTestPersistenceLib

2022-12-13 Thread Michael D Kinney
Reviewed-by: Michael D Kinney Mike > -Original Message- > From: Liu, Zhiguang > Sent: Sunday, December 11, 2022 11:33 PM > To: devel@edk2.groups.io; Liu, Zhiguang ; Kinney, > Michael D ; Michael > Kubacki ; Sean Brogan > > Cc: Ni, Ray > Subject: RE: [edk2-devel] [PATCH]

Re: [edk2-devel] [PATCH V2 3/4] OvmfPkg/IoMmuDxe: Add SEV support for reserved shared memory

2022-12-13 Thread Min Xu
On December 14, 2022 12:05 AM, Lendacky, Thomas wrote: > On 12/12/22 23:48, Min Xu wrote: > > From: Tom Lendacky > > > > Add support to use the reserved shared memory within the IoMmu library. > > This improves boot times for all SEV guests, with SEV-SNP benefiting > > the most as it avoids the

Re: [edk2-devel] [PATCH v2] MdePkg/UnitTestHostBaseLib: Remove HOST_APPLICATION limitation

2022-12-13 Thread Michael D Kinney
Reviewed-by: Michael D Kinney Mike > -Original Message- > From: Liu, Zhiguang > Sent: Sunday, December 11, 2022 11:34 PM > To: devel@edk2.groups.io; Liu, Zhiguang ; Gao, Liming > ; Kinney, Michael > D > Cc: Ni, Ray > Subject: RE: [edk2-devel] [PATCH v2] MdePkg/UnitTestHostBaseLib:

Re: [edk2-devel] [PATCH v2] MdePkg/BaseCpuLib: Remove assembly for CpuFlushTlb

2022-12-13 Thread Michael D Kinney
Reviewed-by: Michael D Kinney Mike > -Original Message- > From: Liu, Zhiguang > Sent: Sunday, December 11, 2022 11:30 PM > To: devel@edk2.groups.io > Cc: Liu, Zhiguang ; Kinney, Michael D > ; Gao, Liming > ; Ni, Ray > Subject: [PATCH v2] MdePkg/BaseCpuLib: Remove assembly for

[edk2-devel] [PATCH v2 RESEND] edk2-staging/RedfishClientPkg: Add Redfish.Settings support

2022-12-13 Thread Simon Wang via groups.io
From: "Simon Wang" BIOS feature driver cannot recognize "@Redfish.Settings", decode it and get pending setting URI. So BIOS feature driver can consume pending setting from correct place. Signed-off-by: Simon Wang Cc: Nickle Wang Cc: Abner Chang Cc: Igor Kulchytskyy Cc: Nick Ramirez ---

Re: [edk2-devel] [PATCH v1 4/5] UefiCpuPkg: Implements SmmCpuFeaturesLib for AMD Family

2022-12-13 Thread Attar, AbdulLateef (Abdul Lateef) via groups.io
[AMD Official Use Only - General] Hi Abner, Thanks for quick review. I'll create a new library and submit the patch. Thanks AbduL From: abner.chang via groups.io Sent: 08 December 2022 10:38 To: Attar, AbdulLateef (Abdul Lateef) ; devel@edk2.groups.io Subject: Re: [edk2-devel]

[edk2-devel] [PATCH v2] edk2-staging/RedfishClientPkg: Add Redfish.Settings support

2022-12-13 Thread Simon Wang via groups.io
From: "Simon Wang" BIOS feature driver cannot recognize "@Redfish.Settings", decode it and get pending setting URI. So BIOS feature driver can consume pending setting from correct place. Signed-off-by: Simon Wang Cc: Nickle Wang Cc: Abner Chang Cc: Igor Kulchytskyy Cc: Nick Ramirez

Re: [edk2-devel] [PATCH v1 5/5] UefiCpuPkg/AmdSmmCpuFeaturesLib: Handles S3 save state

2022-12-13 Thread Attar, AbdulLateef (Abdul Lateef) via groups.io
[AMD Official Use Only - General] Hi Abner, I’ll drop this patch from the patch list. We will investigate and submit a separate patch for handling the S3 save stage. Thanks AbduL From: abner.chang via groups.io Sent: 08 December 2022 11:17 To: Attar, AbdulLateef (Abdul Lateef)

[edk2-devel] [PATCH] OvmfPkg/PlatformInitLib: Fix integrity checking failed of NvVarStore in some cases

2022-12-13 Thread Lee, Chun-Yi
In the commit 4f173db8b4 "OvmfPkg/PlatformInitLib: Add functions for EmuVariableNvStore" , it introduced a PlatformValidateNvVarStore() function for checking the integrity of NvVarStore. In some cases when the VariableHeader->StartId is VARIABLE_DATA, the VariableHeader->State is not just one

[edk2-devel] [PATCH v2 RESEND] edk2-staging/RedfishClientPkg: Add Redfish.Settings support

2022-12-13 Thread Simon Wang (SW-GPU) via groups.io
From: "Simon Wang" BIOS feature driver cannot recognize "@Redfish.Settings", decode it and get pending setting URI. So BIOS feature driver can consume pending setting from correct place. Signed-off-by: Simon Wang Cc: Nickle Wang Cc: Abner Chang Cc: Igor Kulchytskyy Cc: Nick Ramirez ---

Re: [edk2-devel] [PATCH 1/1] SecurityPkg/AuthVariableLib: Check SHA-256 OID with ContentInfo present

2022-12-13 Thread Jan Bobek via groups.io
Ping. Can I get a review and/or some comments on this patch, please? Thanks, -Jan Jan Bobek writes: > Based on whether the DER-encoded ContentInfo structure is present in > authenticated SetVariable payload or not, the SHA-256 OID can be > located at different places. > > UEFI specification

Re: [edk2-devel] [PATCH] Maintainers.txt: Change Anthony's github id

2022-12-13 Thread Michael D Kinney
Merged: https://github.com/tianocore/edk2/pull/3761 Commit: https://github.com/tianocore/edk2/commit/804e8c656643642894a26a2ce3652ad4567b658f Mike > -Original Message- > From: Anthony PERARD > Sent: Tuesday, December 13, 2022 8:06 AM > To: Kinney, Michael D > Cc: devel@edk2.groups.io;

Re: [edk2-devel] PATCH v1 1/1 MdePkg: Remove Itanium leftover data structure

2022-12-13 Thread Michael D Kinney
Hi Pawel, Let's add Ray and Vincent to this topic to help pick the best option. If everything is rebuilt from sources, then just removing the union member will work. The challenge is that the non-Itanium CPU archs that may depend on the current binary layout of these structures. This could be

Re: [edk2-devel] [Patch 1/1] ShellPkg/Shell: Do not set end device path if already end

2022-12-13 Thread Michael D Kinney
Merged: https://github.com/tianocore/edk2/pull/3744 Commit: https://github.com/tianocore/edk2/commit/592bf33a29360e8a447ed8b75daefe94c0888642 Mike > -Original Message- > From: Gao, Zhichao > Sent: Sunday, December 11, 2022 11:17 PM > To: Ard Biesheuvel ; Kinney, Michael D > > Cc:

Re: [edk2-devel] [PATCH] Fix cyclic dependency error on OptionROM build

2022-12-13 Thread Jake Garver via groups.io
Thanks, Konstantin, I approve this version. Thanks, Jake From: Konstantin Aladyshev Sent: Tuesday, December 13, 2022 11:22 AM To: devel@edk2.groups.io Cc: bob.c.f...@intel.com ; gaolim...@byosoft.com.cn ; yuwei.c...@intel.com ; Jake Garver ; Konstantin

Re: [edk2-devel] [PATCH v2 2/2] ShellPkg/AcpiView: APMT Parser

2022-12-13 Thread Sami Mujawar
Merged as 11ce7a2de754..1fd8d08970a9 Thanks. Regards, Sami Mujawar -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#97318): https://edk2.groups.io/g/devel/message/97318 Mute This Topic: https://groups.io/mt/94808914/21656 Group Owner:

Re: [edk2-devel] [PATCH v2 1/2] MdePkg/IndustryStandard: add definitions for ACPI APMT

2022-12-13 Thread Sami Mujawar
Merged as 11ce7a2de754..1fd8d08970a9 Thanks. Regards, Sami Mujawar -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#97317): https://edk2.groups.io/g/devel/message/97317 Mute This Topic: https://groups.io/mt/94808915/21656 Group Owner:

Re: [edk2-devel] [PATCH] Revert "BaseTools/Conf: Fix Dynamic-Library-File template"

2022-12-13 Thread Konstantin Aladyshev
Thanks Jake! I've also verified that this change is enough to fix the cycle dependency issue. I've sent an updated patch to the mailing list. Best regards, Konstantin Aladyshev On Tue, Dec 13, 2022 at 6:42 PM Jake Garver wrote: > > Hi, Konstantin, > > Thanks for working with me offline to

[edk2-devel] [PATCH] Fix cyclic dependency error on OptionROM build

2022-12-13 Thread Konstantin Aladyshev
EDKII build system supports OptionROM generation if particular PCI_* defines are present in the module INF file: ``` [Defines] ... PCI_VENDOR_ID = <...> PCI_DEVICE_ID = <...> PCI_CLASS_CODE = <...> PCI_REVISION = <...>

Re: [edk2-devel] [PATCH] Maintainers.txt: Change Anthony's github id

2022-12-13 Thread Anthony PERARD via groups.io
On Mon, Sep 19, 2022 at 05:01:48PM +, Kinney, Michael D wrote: > Reviewed-by: Michael D Kinney Hi, Could this patch be merged, or is something missing? Cheers, -- Anthony PERARD -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online

Re: [edk2-devel] [PATCH V2 3/4] OvmfPkg/IoMmuDxe: Add SEV support for reserved shared memory

2022-12-13 Thread Lendacky, Thomas via groups.io
On 12/12/22 23:48, Min Xu wrote: From: Tom Lendacky Add support to use the reserved shared memory within the IoMmu library. This improves boot times for all SEV guests, with SEV-SNP benefiting the most as it avoids the page state change call to the hypervisor. Thanks for including the patch,

Re: [edk2-devel] [PATCH V2 1/4] OvmfPkg/IoMmuDxe: Reserve shared memory region for DMA operation

2022-12-13 Thread Lendacky, Thomas via groups.io
On 12/12/22 23:48, Min Xu wrote: From: Min M Xu BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4171 A typical QEMU fw_cfg read bytes with IOMMU for td guest is that: (QemuFwCfgReadBytes@QemuFwCfgLib.c is the example) 1) Allocate DMA Access buffer 2) Map actual data buffer 3) start the

Re: [edk2-devel] [PATCH] Revert "BaseTools/Conf: Fix Dynamic-Library-File template"

2022-12-13 Thread Jake Garver via groups.io
Hi, Konstantin, Thanks for working with me offline to reproduce this. Short answer: We can live without the "$(DEBUG_DIR)(+)$(MODULE_NAME).efi" output and I think removing that will resolve your issue. Rather than revert the original change, can you submit a new patch that removes just that

Re: [edk2-devel] [PATCH V2 3/4] OvmfPkg/IoMmuDxe: Add SEV support for reserved shared memory

2022-12-13 Thread Lendacky, Thomas via groups.io
On 12/12/22 23:52, Xu, Min M wrote: Hi, Tom I cannot apply the patch extracted from your mail with the git am command. So I have to manually port the patch. Please check and test if the patch is correct. Thanks, Min! Will do. I'll report back once I'm done. Thanks, Tom Thanks Min

Re: [edk2-devel] [PATCH edk2-platforms 1/1] Platform/ARM: Update Morello and N1Sdp to use PrePeiCoreUniCore

2022-12-13 Thread Sami Mujawar
Merged as df870c7beaee..425cce541517 Thanks. Regards, Sami Mujawar -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#97309): https://edk2.groups.io/g/devel/message/97309 Mute This Topic: https://groups.io/mt/94568084/21656 Group Owner:

Re: [edk2-devel] [PATCH v2 04/17] DynamicTablesPkg: Remove duplicated words

2022-12-13 Thread Sami Mujawar
Merged as  5890a18409a0..11ce7a2de754 Thanks. Regards, Sami Mujawar On 06/09/2022 09:28 am, pierre.gond...@arm.com wrote: From: Pierre Gondois In an effort to clean the documentation of the above package, remove duplicated words. Cc: Sami Mujawar Cc: Alexei Fedorov Signed-off-by: Pierre

Re: [edk2-devel] [edk2-wiki][PATCH v3 1/4] Add initial How to Build with Stuart Document

2022-12-13 Thread Michael Kubacki
On 12/13/2022 12:25 AM, Rebecca Cran wrote: According to https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections, it looks like normal markdown _should_ apply within collapsed sections? It did not work

Re: [edk2-devel] [edk2-platforms][PATCH V3 1/1] Silicon/ARM/NeoverseN1Soc: Update CCIX PNP ID

2022-12-13 Thread Sami Mujawar
Merged as f0385722832d..df870c7beaee Thanks. Regards, Sami Mujawar On 08/12/2022 12:51 pm, Sami Mujawar via groups.io wrote: HI Sahil, Thank you for the updated patch. These changes look good to me. Reviewed-by: Sami Mujawar Regards, Sami Mujawar On 08/12/2022, 12:07, "sahil" wrote:

Re: [edk2-devel] [PATCH] UefiCpuPkg: Bug fix in 5LPage handling

2022-12-13 Thread Zeng, Star
Thanks Ray.  -Original Message- From: Ni, Ray Sent: Tuesday, December 13, 2022 5:05 PM To: Zeng, Star ; devel@edk2.groups.io; Wu, Jiaxin ; Guenzel, Robert Subject: RE: [edk2-devel] [PATCH] UefiCpuPkg: Bug fix in 5LPage handling Star, It has been merged last week. > -Original

Re: [edk2-devel] [PATCH v2 08/11] ArmVirtPkg: Add new ignored spelling errors

2022-12-13 Thread Sami Mujawar
Hi Michael, Thank you for this patch. These changes look good to me. Reviewed-by: Sami Mujawar Regards, Sami Mujawar On 18/05/2022 01:13 am, mikub...@linux.microsoft.com wrote: From: Michael Kubacki The SpellCheck plugin began reporting new typos that were previously missed. This change

Re: [edk2-devel] [PATCH v2 07/11] ArmPkg: Ignore new typos reported

2022-12-13 Thread Sami Mujawar
Hi Michael, Thank you for this patch. these changes look good to me. Reviewed-by: Sami Mujawar Regards, Sami Mujawar On 18/05/2022 01:13 am, mikub...@linux.microsoft.com wrote: From: Michael Kubacki REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3929 The SpellCheck plugin began

Re: [edk2-devel] [PATCH v2 02/11] StandaloneMmPkg: Fix new typos reported

2022-12-13 Thread Sami Mujawar
Hi Michael, I just noted that 'interfacer' is no longer required in the 'ExtendWords' list. Please find my response inline marked [SAMI]. With the comment below fixed, Reviewed-by: Sami Mujawar Regards, Sami Mujawar On 18/05/2022 01:13 am, mikub...@linux.microsoft.com wrote: From:

Re: [edk2-devel] [PATCH] UefiCpuPkg: Bug fix in 5LPage handling

2022-12-13 Thread Ni, Ray
Star, It has been merged last week. > -Original Message- > From: Zeng, Star > Sent: Tuesday, December 13, 2022 4:41 PM > To: devel@edk2.groups.io; Wu, Jiaxin ; Ni, Ray > ; Guenzel, Robert > > Cc: Zeng, Star > Subject: RE: [edk2-devel] [PATCH] UefiCpuPkg: Bug fix in 5LPage handling >

Re: [edk2-devel] [PATCH] UefiCpuPkg: Bug fix in 5LPage handling

2022-12-13 Thread Zeng, Star
Hi, When could the patch be merged ? Thanks, Star -Original Message- From: devel@edk2.groups.io On Behalf Of Wu, Jiaxin Sent: Wednesday, November 30, 2022 8:47 AM To: devel@edk2.groups.io; Ni, Ray ; Guenzel, Robert Subject: Re: [edk2-devel] [PATCH] UefiCpuPkg: Bug fix in 5LPage