OvmfPkg/UefiCpuPkg: Add CcExit prefix to the APIs of CcExitLib
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4123 APIs which are defined in CcExitLib.h are added with the CcExit prefix. This is to make the APIs' name more meaningful. This change impacts OvmfPkg/UefiCpuPkg. 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> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Signed-off-by: Min Xu <min.m.xu@intel.com>
This commit is contained in:
@@ -150,16 +150,16 @@ SevSnpCreateSaveArea (
|
||||
Msr.GhcbPhysicalAddress = AsmReadMsr64 (MSR_SEV_ES_GHCB);
|
||||
Ghcb = Msr.Ghcb;
|
||||
|
||||
VmgInit (Ghcb, &InterruptState);
|
||||
CcExitVmgInit (Ghcb, &InterruptState);
|
||||
Ghcb->SaveArea.Rax = SaveArea->SevFeatures;
|
||||
VmgSetOffsetValid (Ghcb, GhcbRax);
|
||||
VmgExitStatus = VmgExit (
|
||||
CcExitVmgSetOffsetValid (Ghcb, GhcbRax);
|
||||
VmgExitStatus = CcExitVmgExit (
|
||||
Ghcb,
|
||||
SVM_EXIT_SNP_AP_CREATION,
|
||||
ExitInfo1,
|
||||
ExitInfo2
|
||||
);
|
||||
VmgDone (Ghcb, InterruptState);
|
||||
CcExitVmgDone (Ghcb, InterruptState);
|
||||
|
||||
ASSERT (VmgExitStatus == 0);
|
||||
if (VmgExitStatus != 0) {
|
||||
|
Reference in New Issue
Block a user