public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Lendacky, Thomas" <thomas.lendacky@amd.com>
To: Min Xu <min.m.xu@intel.com>, devel@edk2.groups.io
Cc: Eric Dong <eric.dong@intel.com>, Ray Ni <ray.ni@intel.com>,
	Brijesh Singh <brijesh.singh@amd.com>,
	Erdem Aktas <erdemaktas@google.com>,
	Gerd Hoffmann <kraxel@redhat.com>,
	James Bottomley <jejb@linux.ibm.com>,
	Jiewen Yao <jiewen.yao@intel.com>
Subject: Re: [PATCH 3/8] UefiCpuPkg: Use CcExitLib instead of VmgExitLib
Date: Wed, 2 Nov 2022 08:20:21 -0500	[thread overview]
Message-ID: <494ba959-7c27-ca56-a4a4-8117669a3575@amd.com> (raw)
In-Reply-To: <89c29922-7741-0191-bb9f-a9a1ba934531@amd.com>



On 11/2/22 08:17, Tom Lendacky wrote:
> On 11/2/22 00:10, Min Xu wrote:
>> From: Min M Xu <min.m.xu@intel.com>
>>
>> BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4123
>>
>> VmgExitLib once was designed to provide interfaces to support #VC handler
>> and issue VMGEXIT instruction. After TDVF (enable TDX feature in OVMF) is
>> introduced, this library is updated to support #VE as well. Now the name
>> of VmgExitLib cannot reflect what the lib does. So VmgExitLib is replaced
>> by CcExitLib.
>>
>> Cc: Eric Dong <eric.dong@intel.com>
>> Cc: Ray Ni <ray.ni@intel.com>
>> Cc: Brijesh Singh <brijesh.singh@amd.com>
>> Cc: Erdem Aktas <erdemaktas@google.com>
>> Cc: Gerd Hoffmann <kraxel@redhat.com>
>> Cc: James Bottomley <jejb@linux.ibm.com>
>> Cc: Jiewen Yao <jiewen.yao@intel.com>
>> Cc: Tom Lendacky <thomas.lendacky@amd.com>
>> Signed-off-by: Min Xu <min.m.xu@intel.com>
>> ---
>>   .../DxeCpuExceptionHandlerLib.inf                      |  2 +-
>>   .../PeiCpuExceptionHandlerLib.inf                      |  2 +-
>>   .../CpuExceptionHandlerLib/PeiDxeSmmCpuException.c     |  6 +++---
>>   .../CpuExceptionHandlerLib/SecPeiCpuException.c        |  6 +++---
>>   .../SecPeiCpuExceptionHandlerLib.inf                   |  2 +-
>>   .../SmmCpuExceptionHandlerLib.inf                      |  2 +-
>>   .../Xcode5SecPeiCpuExceptionHandlerLib.inf             |  2 +-
>>   UefiCpuPkg/Library/MpInitLib/AmdSev.c                  | 10 +++++-----
>>   UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf          |  2 +-
>>   UefiCpuPkg/Library/MpInitLib/DxeMpLib.c                |  8 ++++----
>>   UefiCpuPkg/Library/MpInitLib/MpLib.c                   |  2 +-
>>   UefiCpuPkg/Library/MpInitLib/PeiMpInitLib.inf          |  2 +-
>>   UefiCpuPkg/Library/MpInitLib/X64/AmdSev.c              | 10 +++++-----
>>   UefiCpuPkg/UefiCpuPkg.dsc                              |  2 ++
>>   14 files changed, 30 insertions(+), 28 deletions(-)
>>
> 
>> diff --git a/UefiCpuPkg/UefiCpuPkg.dsc b/UefiCpuPkg/UefiCpuPkg.dsc
>> index 0e1a99ddc09f..57c74ba844d2 100644
>> --- a/UefiCpuPkg/UefiCpuPkg.dsc
>> +++ b/UefiCpuPkg/UefiCpuPkg.dsc
>> @@ -60,6 +60,7 @@
>>     
>> PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
>>     
>> TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf
>>     VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
> 
> Should you be deleting the VmgExitLibNull reference now? Or is this to 
> handle issues with the edk2-platforms tree? If so, when will this be 
> removed and VmgExitLibNull deleted?

Ah, never mind... for some reason patch #7 didn't make it to my Inbox so I 
missed that.

Thanks,
Tom

> 
> Thanks,
> Tom
> 
>> +  CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
>>     MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf
>>     
>> SmmCpuRendezvousLib|UefiCpuPkg/Library/SmmCpuRendezvousLib/SmmCpuRendezvousLib.inf
>>     CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf
>> @@ -164,6 +165,7 @@
>>     UefiCpuPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLibStm.inf
>>     UefiCpuPkg/Library/SmmCpuFeaturesLib/StandaloneMmCpuFeaturesLib.inf
>>     UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
>> +  UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
>>     UefiCpuPkg/PiSmmCommunication/PiSmmCommunicationPei.inf
>>     UefiCpuPkg/PiSmmCommunication/PiSmmCommunicationSmm.inf
>>     UefiCpuPkg/SecCore/SecCore.inf

  reply	other threads:[~2022-11-02 13:20 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-02  5:10 [PATCH 0/8] Rename VmgExitLib to CcExitLib Min Xu
2022-11-02  5:10 ` [PATCH 1/8] UefiCpuPkg: Add CcExitLib Min Xu
2022-11-02  5:10 ` [PATCH 2/8] OvmfPkg: " Min Xu
2022-11-02  5:10 ` [PATCH 3/8] UefiCpuPkg: Use CcExitLib instead of VmgExitLib Min Xu
2022-11-02 13:17   ` Lendacky, Thomas
2022-11-02 13:20     ` Lendacky, Thomas [this message]
2022-11-02 13:49   ` Lendacky, Thomas
2022-11-03  1:11     ` [edk2-devel] " Min Xu
2022-11-02  5:10 ` [PATCH 4/8] UefiPayloadPkg: " Min Xu
2022-11-02  5:28   ` Lu, James
2022-11-02  5:31     ` Guo, Gua
2022-11-03 14:10   ` Guo Dong
2022-11-02  5:10 ` [PATCH 5/8] OvmfPkg: " Min Xu
2022-11-02  5:10 ` [PATCH 6/8] OvmfPkg: Delete VmgExitLib Min Xu
2022-11-02  5:10 ` [PATCH 7/8] UefiCpuPkg: " Min Xu
2022-11-02  5:10 ` [PATCH 8/8] Maintainers: Update the VmgExitLib to CcExitLib Min Xu
2022-11-02 16:38   ` Michael D Kinney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=494ba959-7c27-ca56-a4a4-8117669a3575@amd.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox