* [PATCH V2 1/1] [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use different CcProbeLib when SMM is on or off [not found] <cover.1652844962.git.min.m.xu@intel.com> @ 2022-05-18 3:37 ` Min Xu 2022-05-18 3:43 ` Yao, Jiewen 0 siblings, 1 reply; 4+ messages in thread From: Min Xu @ 2022-05-18 3:37 UTC (permalink / raw) To: devel Cc: Min Xu, Andrew Fish, Leif Lindholm, Michael D Kinney, Dann Frazier, Erdem Aktas, James Bottomley, Jiewen Yao, Tom Lendacky, Liming Gao, Jiewen Yao BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3930 CcProbeLib is designed to check the vm guest type. The OvmfPkg/CcProbeLib reads the OvmfWorkArea (0x80B000) to get the vm guest type which is written by each guest (SEV or TDX guest). But in SMM drivers the access to OvmfWorkArea is illegal. PiSmmCpuDxeSmm.inf is an example. It uses IoLib which in OvmfPkgX64 BaseIoLibIntrinsicSev.inf is included. The IoLib probes if the working guest is td guest by calling CcProbe(). So CcProbeLibNull will be included when SMM_REQUIRE is set. Currently only TDVF uses CcProbe to check the guest type, and TDVF doesn't support SMM, so this fix has no side-effect. Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <quic_llindhol@quicinc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Dann Frazier <dann.frazier@canonical.com> Cc: Erdem Aktas <erdemaktas@google.com> Cc: James Bottomley <jejb@linux.ibm.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Tom Lendacky <thomas.lendacky@amd.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Tested-by: dann frazier <dann.frazier@canonical.com> Acked-by: Jiewen Yao <Jiewen.yao@intel.com> Signed-off-by: Min Xu <min.m.xu@intel.com> --- OvmfPkg/OvmfPkgX64.dsc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/OvmfPkg/OvmfPkgX64.dsc b/OvmfPkg/OvmfPkgX64.dsc index 71526bba3183..db7f4def7a24 100644 --- a/OvmfPkg/OvmfPkgX64.dsc +++ b/OvmfPkg/OvmfPkgX64.dsc @@ -171,7 +171,6 @@ PciCapLib|OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf PciCapPciSegmentLib|OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.inf PciCapPciIoLib|OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf - CcProbeLib|OvmfPkg/Library/CcProbeLib/CcProbeLib.inf IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf @@ -198,6 +197,9 @@ !if $(SMM_REQUIRE) == FALSE LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf + CcProbeLib|OvmfPkg/Library/CcProbeLib/CcProbeLib.inf +!else + CcProbeLib|MdePkg/Library/CcProbeLibNull/CcProbeLibNull.inf !endif CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf -- 2.29.2.windows.2 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH V2 1/1] [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use different CcProbeLib when SMM is on or off 2022-05-18 3:37 ` [PATCH V2 1/1] [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use different CcProbeLib when SMM is on or off Min Xu @ 2022-05-18 3:43 ` Yao, Jiewen 2022-05-18 6:45 ` 回复: [edk2-devel] " gaoliming 0 siblings, 1 reply; 4+ messages in thread From: Yao, Jiewen @ 2022-05-18 3:43 UTC (permalink / raw) To: Xu, Min M, devel@edk2.groups.io Cc: Andrew Fish, Leif Lindholm, Kinney, Michael D, Dann Frazier, Aktas, Erdem, James Bottomley, Tom Lendacky, Gao, Liming Hi Steward Team I request this be in stable202205. It is a regression issue since stable202202. Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> Thank you Yao Jiewen > -----Original Message----- > From: Xu, Min M <min.m.xu@intel.com> > Sent: Wednesday, May 18, 2022 11:37 AM > To: devel@edk2.groups.io > Cc: Xu, Min M <min.m.xu@intel.com>; Andrew Fish <afish@apple.com>; Leif > Lindholm <quic_llindhol@quicinc.com>; Kinney, Michael D > <michael.d.kinney@intel.com>; Dann Frazier <dann.frazier@canonical.com>; > Aktas, Erdem <erdemaktas@google.com>; James Bottomley > <jejb@linux.ibm.com>; Yao, Jiewen <jiewen.yao@intel.com>; Tom Lendacky > <thomas.lendacky@amd.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Yao, > Jiewen <jiewen.yao@intel.com> > Subject: [PATCH V2 1/1] [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use > different CcProbeLib when SMM is on or off > > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3930 > > CcProbeLib is designed to check the vm guest type. The OvmfPkg/CcProbeLib > reads the OvmfWorkArea (0x80B000) to get the vm guest type which is > written by each guest (SEV or TDX guest). But in SMM drivers the access > to OvmfWorkArea is illegal. PiSmmCpuDxeSmm.inf is an example. It uses > IoLib which in OvmfPkgX64 BaseIoLibIntrinsicSev.inf is included. The > IoLib probes if the working guest is td guest by calling CcProbe(). > > So CcProbeLibNull will be included when SMM_REQUIRE is set. Currently > only TDVF uses CcProbe to check the guest type, and TDVF doesn't > support SMM, so this fix has no side-effect. > > Cc: Andrew Fish <afish@apple.com> > Cc: Leif Lindholm <quic_llindhol@quicinc.com> > Cc: Michael D Kinney <michael.d.kinney@intel.com> > Cc: Dann Frazier <dann.frazier@canonical.com> > Cc: Erdem Aktas <erdemaktas@google.com> > Cc: James Bottomley <jejb@linux.ibm.com> > Cc: Jiewen Yao <jiewen.yao@intel.com> > Cc: Tom Lendacky <thomas.lendacky@amd.com> > Cc: Liming Gao <gaoliming@byosoft.com.cn> > Tested-by: dann frazier <dann.frazier@canonical.com> > Acked-by: Jiewen Yao <Jiewen.yao@intel.com> > Signed-off-by: Min Xu <min.m.xu@intel.com> > --- > OvmfPkg/OvmfPkgX64.dsc | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/OvmfPkg/OvmfPkgX64.dsc b/OvmfPkg/OvmfPkgX64.dsc > index 71526bba3183..db7f4def7a24 100644 > --- a/OvmfPkg/OvmfPkgX64.dsc > +++ b/OvmfPkg/OvmfPkgX64.dsc > @@ -171,7 +171,6 @@ > PciCapLib|OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf > > PciCapPciSegmentLib|OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapP > ciSegmentLib.inf > PciCapPciIoLib|OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf > - CcProbeLib|OvmfPkg/Library/CcProbeLib/CcProbeLib.inf > IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf > > OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/ > OemHookStatusCodeLibNull.inf > SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf > @@ -198,6 +197,9 @@ > > !if $(SMM_REQUIRE) == FALSE > LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf > + CcProbeLib|OvmfPkg/Library/CcProbeLib/CcProbeLib.inf > +!else > + CcProbeLib|MdePkg/Library/CcProbeLibNull/CcProbeLibNull.inf > !endif > > CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/Customize > dDisplayLib.inf > > FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLi > b.inf > -- > 2.29.2.windows.2 ^ permalink raw reply [flat|nested] 4+ messages in thread
* 回复: [edk2-devel] [PATCH V2 1/1] [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use different CcProbeLib when SMM is on or off 2022-05-18 3:43 ` Yao, Jiewen @ 2022-05-18 6:45 ` gaoliming 2022-05-20 1:23 ` Yao, Jiewen 0 siblings, 1 reply; 4+ messages in thread From: gaoliming @ 2022-05-18 6:45 UTC (permalink / raw) To: devel, jiewen.yao, 'Xu, Min M' Cc: 'Andrew Fish', 'Leif Lindholm', 'Kinney, Michael D', 'Dann Frazier', 'Aktas, Erdem', 'James Bottomley', 'Tom Lendacky' Jiewen: I agree to merge it for this stable tag. Thanks Liming > -----邮件原件----- > 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Yao, Jiewen > 发送时间: 2022年5月18日 11:43 > 收件人: Xu, Min M <min.m.xu@intel.com>; devel@edk2.groups.io > 抄送: Andrew Fish <afish@apple.com>; Leif Lindholm > <quic_llindhol@quicinc.com>; Kinney, Michael D > <michael.d.kinney@intel.com>; Dann Frazier <dann.frazier@canonical.com>; > Aktas, Erdem <erdemaktas@google.com>; James Bottomley > <jejb@linux.ibm.com>; Tom Lendacky <thomas.lendacky@amd.com>; Gao, > Liming <gaoliming@byosoft.com.cn> > 主题: Re: [edk2-devel] [PATCH V2 1/1] > [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use different CcProbeLib when > SMM is on or off > > Hi Steward Team > I request this be in stable202205. It is a regression issue since stable202202. > > Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> > > Thank you > Yao Jiewen > > > > -----Original Message----- > > From: Xu, Min M <min.m.xu@intel.com> > > Sent: Wednesday, May 18, 2022 11:37 AM > > To: devel@edk2.groups.io > > Cc: Xu, Min M <min.m.xu@intel.com>; Andrew Fish <afish@apple.com>; > Leif > > Lindholm <quic_llindhol@quicinc.com>; Kinney, Michael D > > <michael.d.kinney@intel.com>; Dann Frazier > <dann.frazier@canonical.com>; > > Aktas, Erdem <erdemaktas@google.com>; James Bottomley > > <jejb@linux.ibm.com>; Yao, Jiewen <jiewen.yao@intel.com>; Tom Lendacky > > <thomas.lendacky@amd.com>; Gao, Liming <gaoliming@byosoft.com.cn>; > Yao, > > Jiewen <jiewen.yao@intel.com> > > Subject: [PATCH V2 1/1] [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use > > different CcProbeLib when SMM is on or off > > > > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3930 > > > > CcProbeLib is designed to check the vm guest type. The > OvmfPkg/CcProbeLib > > reads the OvmfWorkArea (0x80B000) to get the vm guest type which is > > written by each guest (SEV or TDX guest). But in SMM drivers the access > > to OvmfWorkArea is illegal. PiSmmCpuDxeSmm.inf is an example. It uses > > IoLib which in OvmfPkgX64 BaseIoLibIntrinsicSev.inf is included. The > > IoLib probes if the working guest is td guest by calling CcProbe(). > > > > So CcProbeLibNull will be included when SMM_REQUIRE is set. Currently > > only TDVF uses CcProbe to check the guest type, and TDVF doesn't > > support SMM, so this fix has no side-effect. > > > > Cc: Andrew Fish <afish@apple.com> > > Cc: Leif Lindholm <quic_llindhol@quicinc.com> > > Cc: Michael D Kinney <michael.d.kinney@intel.com> > > Cc: Dann Frazier <dann.frazier@canonical.com> > > Cc: Erdem Aktas <erdemaktas@google.com> > > Cc: James Bottomley <jejb@linux.ibm.com> > > Cc: Jiewen Yao <jiewen.yao@intel.com> > > Cc: Tom Lendacky <thomas.lendacky@amd.com> > > Cc: Liming Gao <gaoliming@byosoft.com.cn> > > Tested-by: dann frazier <dann.frazier@canonical.com> > > Acked-by: Jiewen Yao <Jiewen.yao@intel.com> > > Signed-off-by: Min Xu <min.m.xu@intel.com> > > --- > > OvmfPkg/OvmfPkgX64.dsc | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/OvmfPkg/OvmfPkgX64.dsc b/OvmfPkg/OvmfPkgX64.dsc > > index 71526bba3183..db7f4def7a24 100644 > > --- a/OvmfPkg/OvmfPkgX64.dsc > > +++ b/OvmfPkg/OvmfPkgX64.dsc > > @@ -171,7 +171,6 @@ > > PciCapLib|OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf > > > > > PciCapPciSegmentLib|OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciC > apP > > ciSegmentLib.inf > > > PciCapPciIoLib|OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf > > - CcProbeLib|OvmfPkg/Library/CcProbeLib/CcProbeLib.inf > > IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf > > > > > OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNul > l/ > > OemHookStatusCodeLibNull.inf > > SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf > > @@ -198,6 +197,9 @@ > > > > !if $(SMM_REQUIRE) == FALSE > > LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf > > + CcProbeLib|OvmfPkg/Library/CcProbeLib/CcProbeLib.inf > > +!else > > + CcProbeLib|MdePkg/Library/CcProbeLibNull/CcProbeLibNull.inf > > !endif > > > > > CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/Custom > ize > > dDisplayLib.inf > > > > > FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBl > tLi > > b.inf > > -- > > 2.29.2.windows.2 > > > > > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [edk2-devel] [PATCH V2 1/1] [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use different CcProbeLib when SMM is on or off 2022-05-18 6:45 ` 回复: [edk2-devel] " gaoliming @ 2022-05-20 1:23 ` Yao, Jiewen 0 siblings, 0 replies; 4+ messages in thread From: Yao, Jiewen @ 2022-05-20 1:23 UTC (permalink / raw) To: devel@edk2.groups.io, Gao, Liming, Xu, Min M Cc: 'Andrew Fish', 'Leif Lindholm', Kinney, Michael D, 'Dann Frazier', Aktas, Erdem, 'James Bottomley', 'Tom Lendacky' Thanks Liming. Merged https://github.com/tianocore/edk2/pull/2909 > -----Original Message----- > From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of gaoliming > Sent: Wednesday, May 18, 2022 2:46 PM > To: devel@edk2.groups.io; Yao, Jiewen <jiewen.yao@intel.com>; Xu, Min M > <min.m.xu@intel.com> > Cc: 'Andrew Fish' <afish@apple.com>; 'Leif Lindholm' > <quic_llindhol@quicinc.com>; Kinney, Michael D <michael.d.kinney@intel.com>; > 'Dann Frazier' <dann.frazier@canonical.com>; Aktas, Erdem > <erdemaktas@google.com>; 'James Bottomley' <jejb@linux.ibm.com>; 'Tom > Lendacky' <thomas.lendacky@amd.com> > Subject: 回复: [edk2-devel] [PATCH V2 1/1] [edk2- > stable202205]OvmfPkg/OvmfPkgX64: Use different CcProbeLib when SMM is on > or off > > Jiewen: > I agree to merge it for this stable tag. > > Thanks > Liming > > -----邮件原件----- > > 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Yao, Jiewen > > 发送时间: 2022年5月18日 11:43 > > 收件人: Xu, Min M <min.m.xu@intel.com>; devel@edk2.groups.io > > 抄送: Andrew Fish <afish@apple.com>; Leif Lindholm > > <quic_llindhol@quicinc.com>; Kinney, Michael D > > <michael.d.kinney@intel.com>; Dann Frazier <dann.frazier@canonical.com>; > > Aktas, Erdem <erdemaktas@google.com>; James Bottomley > > <jejb@linux.ibm.com>; Tom Lendacky <thomas.lendacky@amd.com>; Gao, > > Liming <gaoliming@byosoft.com.cn> > > 主题: Re: [edk2-devel] [PATCH V2 1/1] > > [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use different CcProbeLib when > > SMM is on or off > > > > Hi Steward Team > > I request this be in stable202205. It is a regression issue since > stable202202. > > > > Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> > > > > Thank you > > Yao Jiewen > > > > > > > -----Original Message----- > > > From: Xu, Min M <min.m.xu@intel.com> > > > Sent: Wednesday, May 18, 2022 11:37 AM > > > To: devel@edk2.groups.io > > > Cc: Xu, Min M <min.m.xu@intel.com>; Andrew Fish <afish@apple.com>; > > Leif > > > Lindholm <quic_llindhol@quicinc.com>; Kinney, Michael D > > > <michael.d.kinney@intel.com>; Dann Frazier > > <dann.frazier@canonical.com>; > > > Aktas, Erdem <erdemaktas@google.com>; James Bottomley > > > <jejb@linux.ibm.com>; Yao, Jiewen <jiewen.yao@intel.com>; Tom Lendacky > > > <thomas.lendacky@amd.com>; Gao, Liming <gaoliming@byosoft.com.cn>; > > Yao, > > > Jiewen <jiewen.yao@intel.com> > > > Subject: [PATCH V2 1/1] [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use > > > different CcProbeLib when SMM is on or off > > > > > > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3930 > > > > > > CcProbeLib is designed to check the vm guest type. The > > OvmfPkg/CcProbeLib > > > reads the OvmfWorkArea (0x80B000) to get the vm guest type which is > > > written by each guest (SEV or TDX guest). But in SMM drivers the access > > > to OvmfWorkArea is illegal. PiSmmCpuDxeSmm.inf is an example. It uses > > > IoLib which in OvmfPkgX64 BaseIoLibIntrinsicSev.inf is included. The > > > IoLib probes if the working guest is td guest by calling CcProbe(). > > > > > > So CcProbeLibNull will be included when SMM_REQUIRE is set. Currently > > > only TDVF uses CcProbe to check the guest type, and TDVF doesn't > > > support SMM, so this fix has no side-effect. > > > > > > Cc: Andrew Fish <afish@apple.com> > > > Cc: Leif Lindholm <quic_llindhol@quicinc.com> > > > Cc: Michael D Kinney <michael.d.kinney@intel.com> > > > Cc: Dann Frazier <dann.frazier@canonical.com> > > > Cc: Erdem Aktas <erdemaktas@google.com> > > > Cc: James Bottomley <jejb@linux.ibm.com> > > > Cc: Jiewen Yao <jiewen.yao@intel.com> > > > Cc: Tom Lendacky <thomas.lendacky@amd.com> > > > Cc: Liming Gao <gaoliming@byosoft.com.cn> > > > Tested-by: dann frazier <dann.frazier@canonical.com> > > > Acked-by: Jiewen Yao <Jiewen.yao@intel.com> > > > Signed-off-by: Min Xu <min.m.xu@intel.com> > > > --- > > > OvmfPkg/OvmfPkgX64.dsc | 4 +++- > > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > > > diff --git a/OvmfPkg/OvmfPkgX64.dsc b/OvmfPkg/OvmfPkgX64.dsc > > > index 71526bba3183..db7f4def7a24 100644 > > > --- a/OvmfPkg/OvmfPkgX64.dsc > > > +++ b/OvmfPkg/OvmfPkgX64.dsc > > > @@ -171,7 +171,6 @@ > > > PciCapLib|OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf > > > > > > > > PciCapPciSegmentLib|OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciC > > apP > > > ciSegmentLib.inf > > > > > PciCapPciIoLib|OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf > > > - CcProbeLib|OvmfPkg/Library/CcProbeLib/CcProbeLib.inf > > > IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf > > > > > > > > OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNul > > l/ > > > OemHookStatusCodeLibNull.inf > > > SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf > > > @@ -198,6 +197,9 @@ > > > > > > !if $(SMM_REQUIRE) == FALSE > > > LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf > > > + CcProbeLib|OvmfPkg/Library/CcProbeLib/CcProbeLib.inf > > > +!else > > > + CcProbeLib|MdePkg/Library/CcProbeLibNull/CcProbeLibNull.inf > > > !endif > > > > > > > > CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/Custom > > ize > > > dDisplayLib.inf > > > > > > > > FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBl > > tLi > > > b.inf > > > -- > > > 2.29.2.windows.2 > > > > > > > > > > > > > > > > > ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-05-20 1:23 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <cover.1652844962.git.min.m.xu@intel.com> 2022-05-18 3:37 ` [PATCH V2 1/1] [edk2-stable202205]OvmfPkg/OvmfPkgX64: Use different CcProbeLib when SMM is on or off Min Xu 2022-05-18 3:43 ` Yao, Jiewen 2022-05-18 6:45 ` 回复: [edk2-devel] " gaoliming 2022-05-20 1:23 ` Yao, Jiewen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox