mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-23 05:34:31 +02:00
UefiCpuPkg/PiSmmCpuDxeSmm: Remove unnecessary function
Remove unnecessary function SetNotPresentPage(). We can directly use ConvertMemoryPageAttributes to set a range to non-present. Signed-off-by: Dun Tan <dun.tan@intel.com> Cc: Eric Dong <eric.dong@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Cc: Rahul Kumar <rahul1.kumar@intel.com> Cc: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
4ceefd6dd1
commit
f5c987fcac
@ -1095,10 +1095,14 @@ PiCpuSmmEntry (
|
|||||||
mSmmShadowStackSize
|
mSmmShadowStackSize
|
||||||
);
|
);
|
||||||
if (FeaturePcdGet (PcdCpuSmmStackGuard)) {
|
if (FeaturePcdGet (PcdCpuSmmStackGuard)) {
|
||||||
SetNotPresentPage (
|
ConvertMemoryPageAttributes (
|
||||||
Cr3,
|
Cr3,
|
||||||
|
mPagingMode,
|
||||||
(EFI_PHYSICAL_ADDRESS)(UINTN)Stacks + mSmmStackSize + EFI_PAGES_TO_SIZE (1) + (mSmmStackSize + mSmmShadowStackSize) * Index,
|
(EFI_PHYSICAL_ADDRESS)(UINTN)Stacks + mSmmStackSize + EFI_PAGES_TO_SIZE (1) + (mSmmStackSize + mSmmShadowStackSize) * Index,
|
||||||
EFI_PAGES_TO_SIZE (1)
|
EFI_PAGES_TO_SIZE (1),
|
||||||
|
EFI_MEMORY_RP,
|
||||||
|
TRUE,
|
||||||
|
NULL
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1249,22 +1249,6 @@ SetShadowStack (
|
|||||||
IN UINT64 Length
|
IN UINT64 Length
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
Set not present memory.
|
|
||||||
|
|
||||||
@param[in] Cr3 The page table base address.
|
|
||||||
@param[in] BaseAddress The physical address that is the start address of a memory region.
|
|
||||||
@param[in] Length The size in bytes of the memory region.
|
|
||||||
|
|
||||||
@retval EFI_SUCCESS The not present memory is set.
|
|
||||||
**/
|
|
||||||
EFI_STATUS
|
|
||||||
SetNotPresentPage (
|
|
||||||
IN UINTN Cr3,
|
|
||||||
IN EFI_PHYSICAL_ADDRESS BaseAddress,
|
|
||||||
IN UINT64 Length
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Initialize the shadow stack related data structure.
|
Initialize the shadow stack related data structure.
|
||||||
|
|
||||||
|
@ -768,28 +768,6 @@ SetShadowStack (
|
|||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
Set not present memory.
|
|
||||||
|
|
||||||
@param[in] Cr3 The page table base address.
|
|
||||||
@param[in] BaseAddress The physical address that is the start address of a memory region.
|
|
||||||
@param[in] Length The size in bytes of the memory region.
|
|
||||||
|
|
||||||
@retval EFI_SUCCESS The not present memory is set.
|
|
||||||
**/
|
|
||||||
EFI_STATUS
|
|
||||||
SetNotPresentPage (
|
|
||||||
IN UINTN Cr3,
|
|
||||||
IN EFI_PHYSICAL_ADDRESS BaseAddress,
|
|
||||||
IN UINT64 Length
|
|
||||||
)
|
|
||||||
{
|
|
||||||
EFI_STATUS Status;
|
|
||||||
|
|
||||||
Status = SmmSetMemoryAttributesEx (Cr3, mPagingMode, BaseAddress, Length, EFI_MEMORY_RP);
|
|
||||||
return Status;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Retrieves a pointer to the system configuration table from the SMM System Table
|
Retrieves a pointer to the system configuration table from the SMM System Table
|
||||||
based on a specified GUID.
|
based on a specified GUID.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user