diff options
author | Tan, Dun <dun.tan@intel.com> | 2022-10-11 13:59:35 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-10-17 08:03:06 +0000 |
commit | b8e54e15de1b5bfc5065e3fda8ded4664c819850 (patch) | |
tree | 167393b369817186508540af6f1eb9a6e279aeca /UefiCpuPkg/Library | |
parent | a7e070808c7143974621f9bbd17968e8ca857f38 (diff) | |
download | edk2-b8e54e15de1b5bfc5065e3fda8ded4664c819850.tar.gz |
UefiCpuPkg/CpuPageTableLib:Support PAE paging for PageTableParse
Support PAE paging for PageTableParse API in CpuPageTableLib.
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>
Diffstat (limited to 'UefiCpuPkg/Library')
-rw-r--r-- | UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableParse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableParse.c b/UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableParse.c index e66961e122..65490751ab 100644 --- a/UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableParse.c +++ b/UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableParse.c @@ -270,10 +270,9 @@ PageTableParse ( IA32_MAP_ENTRY OneEntry;
UINTN MaxLevel;
- if ((PagingMode == Paging32bit) || (PagingMode == PagingPae) || (PagingMode >= PagingModeMax)) {
+ if ((PagingMode == Paging32bit) || (PagingMode >= PagingModeMax)) {
//
// 32bit paging is never supported.
- // PAE paging will be supported later.
//
return RETURN_UNSUPPORTED;
}
|