* [PATCH v2 0/1] Not to Update Bitwidth Variable in Static Paging
@ 2021-04-14 20:25 Kun Qin
2021-04-14 20:25 ` [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During " Kun Qin
[not found] ` <1675D34B1BADE93C.32393@groups.io>
0 siblings, 2 replies; 7+ messages in thread
From: Kun Qin @ 2021-04-14 20:25 UTC (permalink / raw)
To: devel; +Cc: Eric Dong, Ray Ni, Laszlo Ersek, Rahul Kumar
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3300
This patch series is a follow up of previous submission:
https://edk2.groups.io/g/devel/message/74078
These module change is validated on two different physical platforms.
v2 patch focus on feedback for reviewed commits in v1 patch, including:
a. Updated SetStaticPageTable interface to take max bits supported;
b. Updated commit message to not use "stack variable";
c. Updated commit message with "Fixes:" tag;
d. Changed the local variable/input parameter to use UINT8;
Patch v2 branch: https://github.com/kuqin12/edk2/tree/bitwidth_paging_v2
Cc: Eric Dong <eric.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Rahul Kumar <rahul1.kumar@intel.com>
Kun Qin (1):
UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During Static
Paging
UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c | 30 +++++++++++---------
1 file changed, 16 insertions(+), 14 deletions(-)
--
2.31.0.windows.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During Static Paging
2021-04-14 20:25 [PATCH v2 0/1] Not to Update Bitwidth Variable in Static Paging Kun Qin
@ 2021-04-14 20:25 ` Kun Qin
2021-04-15 10:41 ` Laszlo Ersek
2021-04-19 22:28 ` [edk2-devel] " Ni, Ray
[not found] ` <1675D34B1BADE93C.32393@groups.io>
1 sibling, 2 replies; 7+ messages in thread
From: Kun Qin @ 2021-04-14 20:25 UTC (permalink / raw)
To: devel; +Cc: Eric Dong, Ray Ni, Laszlo Ersek, Rahul Kumar
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3300
Current implementation of SetStaticPageTable routine in PiSmmCpuDxeSmm
driver will check a global variable mPhysicalAddressBits, and eventually
cap any value larger than 39 at 39.
This global variable is used in ConvertMemoryPageAttributes, which backs
SmmSetMemoryAttributes and SmmClearMemoryAttributes. Thus for a processor
that supports more than 39 bits width, trying to mark page table regions
higher than 39-bit will always return EFI_UNSUPPROTED.
This change updated the interface of SetStaticPageTable function to take
PhysicalAddressBits as an input parameter, in order to avoid changing/
accessing the global variable.
Cc: Eric Dong <eric.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Rahul Kumar <rahul1.kumar@intel.com>
Fixes: 4eee0cc7cc0db74489b99c19eba056b53eda6358
Signed-off-by: Kun Qin <kuqin12@gmail.com>
---
Notes:
v2:
- SetStaticPageTable interface update [Ray]
- Commit message updates, variable type change [Laszlo]
UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c | 30 +++++++++++---------
1 file changed, 16 insertions(+), 14 deletions(-)
diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
index 6902584b1fbd..d6f8dd94d303 100644
--- a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
+++ b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
@@ -211,11 +211,13 @@ CalculateMaximumSupportAddress (
/**
Set static page table.
- @param[in] PageTable Address of page table.
+ @param[in] PageTable Address of page table.
+ @param[in] PhysicalAddressBits The maximum physical address bits supported.
**/
VOID
SetStaticPageTable (
- IN UINTN PageTable
+ IN UINTN PageTable,
+ IN UINT8 PhysicalAddressBits
)
{
UINT64 PageAddress;
@@ -237,26 +239,26 @@ SetStaticPageTable (
// IA-32e paging translates 48-bit linear addresses to 52-bit physical addresses
// when 5-Level Paging is disabled.
//
- ASSERT (mPhysicalAddressBits <= 52);
- if (!m5LevelPagingNeeded && mPhysicalAddressBits > 48) {
- mPhysicalAddressBits = 48;
+ ASSERT (PhysicalAddressBits <= 52);
+ if (!m5LevelPagingNeeded && PhysicalAddressBits > 48) {
+ PhysicalAddressBits = 48;
}
NumberOfPml5EntriesNeeded = 1;
- if (mPhysicalAddressBits > 48) {
- NumberOfPml5EntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 48);
- mPhysicalAddressBits = 48;
+ if (PhysicalAddressBits > 48) {
+ NumberOfPml5EntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 48);
+ PhysicalAddressBits = 48;
}
NumberOfPml4EntriesNeeded = 1;
- if (mPhysicalAddressBits > 39) {
- NumberOfPml4EntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 39);
- mPhysicalAddressBits = 39;
+ if (PhysicalAddressBits > 39) {
+ NumberOfPml4EntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 39);
+ PhysicalAddressBits = 39;
}
NumberOfPdpEntriesNeeded = 1;
- ASSERT (mPhysicalAddressBits > 30);
- NumberOfPdpEntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 30);
+ ASSERT (PhysicalAddressBits > 30);
+ NumberOfPdpEntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 30);
//
// By architecture only one PageMapLevel4 exists - so lets allocate storage for it.
@@ -438,7 +440,7 @@ SmmInitPageTable (
// When access to non-SMRAM memory is restricted, create page table
// that covers all memory space.
//
- SetStaticPageTable ((UINTN)PTEntry);
+ SetStaticPageTable ((UINTN)PTEntry, mPhysicalAddressBits);
} else {
//
// Add pages to page pool
--
2.31.0.windows.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During Static Paging
2021-04-14 20:25 ` [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During " Kun Qin
@ 2021-04-15 10:41 ` Laszlo Ersek
2021-04-16 5:17 ` Kun Qin
2021-04-19 22:28 ` [edk2-devel] " Ni, Ray
1 sibling, 1 reply; 7+ messages in thread
From: Laszlo Ersek @ 2021-04-15 10:41 UTC (permalink / raw)
To: Kun Qin, devel; +Cc: Eric Dong, Ray Ni, Rahul Kumar
On 04/14/21 22:25, Kun Qin wrote:
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3300
>
> Current implementation of SetStaticPageTable routine in PiSmmCpuDxeSmm
> driver will check a global variable mPhysicalAddressBits, and eventually
> cap any value larger than 39 at 39.
>
> This global variable is used in ConvertMemoryPageAttributes, which backs
> SmmSetMemoryAttributes and SmmClearMemoryAttributes. Thus for a processor
> that supports more than 39 bits width, trying to mark page table regions
> higher than 39-bit will always return EFI_UNSUPPROTED.
>
> This change updated the interface of SetStaticPageTable function to take
> PhysicalAddressBits as an input parameter, in order to avoid changing/
> accessing the global variable.
>
> Cc: Eric Dong <eric.dong@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Laszlo Ersek <lersek@redhat.com>
> Cc: Rahul Kumar <rahul1.kumar@intel.com>
>
> Fixes: 4eee0cc7cc0db74489b99c19eba056b53eda6358
> Signed-off-by: Kun Qin <kuqin12@gmail.com>
> ---
>
> Notes:
> v2:
> - SetStaticPageTable interface update [Ray]
> - Commit message updates, variable type change [Laszlo]
>
> UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c | 30 +++++++++++---------
> 1 file changed, 16 insertions(+), 14 deletions(-)
>
> diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
> index 6902584b1fbd..d6f8dd94d303 100644
> --- a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
> +++ b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
> @@ -211,11 +211,13 @@ CalculateMaximumSupportAddress (
> /**
> Set static page table.
>
> - @param[in] PageTable Address of page table.
> + @param[in] PageTable Address of page table.
> + @param[in] PhysicalAddressBits The maximum physical address bits supported.
> **/
> VOID
> SetStaticPageTable (
> - IN UINTN PageTable
> + IN UINTN PageTable,
> + IN UINT8 PhysicalAddressBits
> )
> {
> UINT64 PageAddress;
> @@ -237,26 +239,26 @@ SetStaticPageTable (
> // IA-32e paging translates 48-bit linear addresses to 52-bit physical addresses
> // when 5-Level Paging is disabled.
> //
> - ASSERT (mPhysicalAddressBits <= 52);
> - if (!m5LevelPagingNeeded && mPhysicalAddressBits > 48) {
> - mPhysicalAddressBits = 48;
> + ASSERT (PhysicalAddressBits <= 52);
> + if (!m5LevelPagingNeeded && PhysicalAddressBits > 48) {
> + PhysicalAddressBits = 48;
> }
>
> NumberOfPml5EntriesNeeded = 1;
> - if (mPhysicalAddressBits > 48) {
> - NumberOfPml5EntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 48);
> - mPhysicalAddressBits = 48;
> + if (PhysicalAddressBits > 48) {
> + NumberOfPml5EntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 48);
> + PhysicalAddressBits = 48;
> }
>
> NumberOfPml4EntriesNeeded = 1;
> - if (mPhysicalAddressBits > 39) {
> - NumberOfPml4EntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 39);
> - mPhysicalAddressBits = 39;
> + if (PhysicalAddressBits > 39) {
> + NumberOfPml4EntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 39);
> + PhysicalAddressBits = 39;
> }
>
> NumberOfPdpEntriesNeeded = 1;
> - ASSERT (mPhysicalAddressBits > 30);
> - NumberOfPdpEntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 30);
> + ASSERT (PhysicalAddressBits > 30);
> + NumberOfPdpEntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 30);
>
> //
> // By architecture only one PageMapLevel4 exists - so lets allocate storage for it.
> @@ -438,7 +440,7 @@ SmmInitPageTable (
> // When access to non-SMRAM memory is restricted, create page table
> // that covers all memory space.
> //
> - SetStaticPageTable ((UINTN)PTEntry);
> + SetStaticPageTable ((UINTN)PTEntry, mPhysicalAddressBits);
> } else {
> //
> // Add pages to page pool
>
Last time I checked the variable renames carefully, now I'm trusting
that those have not been broken/modified since v1.
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During Static Paging
2021-04-15 10:41 ` Laszlo Ersek
@ 2021-04-16 5:17 ` Kun Qin
0 siblings, 0 replies; 7+ messages in thread
From: Kun Qin @ 2021-04-16 5:17 UTC (permalink / raw)
To: Laszlo Ersek, devel; +Cc: Eric Dong, Ray Ni, Rahul Kumar
Hi Laszlo,
I kept the renames and only replaced the original local variable
assignment with input argument. Thanks for your review.
Regards,
Kun
On 04/15/2021 03:41, Laszlo Ersek wrote:
> On 04/14/21 22:25, Kun Qin wrote:
>> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3300
>>
>> Current implementation of SetStaticPageTable routine in PiSmmCpuDxeSmm
>> driver will check a global variable mPhysicalAddressBits, and eventually
>> cap any value larger than 39 at 39.
>>
>> This global variable is used in ConvertMemoryPageAttributes, which backs
>> SmmSetMemoryAttributes and SmmClearMemoryAttributes. Thus for a processor
>> that supports more than 39 bits width, trying to mark page table regions
>> higher than 39-bit will always return EFI_UNSUPPROTED.
>>
>> This change updated the interface of SetStaticPageTable function to take
>> PhysicalAddressBits as an input parameter, in order to avoid changing/
>> accessing the global variable.
>>
>> Cc: Eric Dong <eric.dong@intel.com>
>> Cc: Ray Ni <ray.ni@intel.com>
>> Cc: Laszlo Ersek <lersek@redhat.com>
>> Cc: Rahul Kumar <rahul1.kumar@intel.com>
>>
>> Fixes: 4eee0cc7cc0db74489b99c19eba056b53eda6358
>> Signed-off-by: Kun Qin <kuqin12@gmail.com>
>> ---
>>
>> Notes:
>> v2:
>> - SetStaticPageTable interface update [Ray]
>> - Commit message updates, variable type change [Laszlo]
>>
>> UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c | 30 +++++++++++---------
>> 1 file changed, 16 insertions(+), 14 deletions(-)
>>
>> diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
>> index 6902584b1fbd..d6f8dd94d303 100644
>> --- a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
>> +++ b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
>> @@ -211,11 +211,13 @@ CalculateMaximumSupportAddress (
>> /**
>> Set static page table.
>>
>> - @param[in] PageTable Address of page table.
>> + @param[in] PageTable Address of page table.
>> + @param[in] PhysicalAddressBits The maximum physical address bits supported.
>> **/
>> VOID
>> SetStaticPageTable (
>> - IN UINTN PageTable
>> + IN UINTN PageTable,
>> + IN UINT8 PhysicalAddressBits
>> )
>> {
>> UINT64 PageAddress;
>> @@ -237,26 +239,26 @@ SetStaticPageTable (
>> // IA-32e paging translates 48-bit linear addresses to 52-bit physical addresses
>> // when 5-Level Paging is disabled.
>> //
>> - ASSERT (mPhysicalAddressBits <= 52);
>> - if (!m5LevelPagingNeeded && mPhysicalAddressBits > 48) {
>> - mPhysicalAddressBits = 48;
>> + ASSERT (PhysicalAddressBits <= 52);
>> + if (!m5LevelPagingNeeded && PhysicalAddressBits > 48) {
>> + PhysicalAddressBits = 48;
>> }
>>
>> NumberOfPml5EntriesNeeded = 1;
>> - if (mPhysicalAddressBits > 48) {
>> - NumberOfPml5EntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 48);
>> - mPhysicalAddressBits = 48;
>> + if (PhysicalAddressBits > 48) {
>> + NumberOfPml5EntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 48);
>> + PhysicalAddressBits = 48;
>> }
>>
>> NumberOfPml4EntriesNeeded = 1;
>> - if (mPhysicalAddressBits > 39) {
>> - NumberOfPml4EntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 39);
>> - mPhysicalAddressBits = 39;
>> + if (PhysicalAddressBits > 39) {
>> + NumberOfPml4EntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 39);
>> + PhysicalAddressBits = 39;
>> }
>>
>> NumberOfPdpEntriesNeeded = 1;
>> - ASSERT (mPhysicalAddressBits > 30);
>> - NumberOfPdpEntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 30);
>> + ASSERT (PhysicalAddressBits > 30);
>> + NumberOfPdpEntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 30);
>>
>> //
>> // By architecture only one PageMapLevel4 exists - so lets allocate storage for it.
>> @@ -438,7 +440,7 @@ SmmInitPageTable (
>> // When access to non-SMRAM memory is restricted, create page table
>> // that covers all memory space.
>> //
>> - SetStaticPageTable ((UINTN)PTEntry);
>> + SetStaticPageTable ((UINTN)PTEntry, mPhysicalAddressBits);
>> } else {
>> //
>> // Add pages to page pool
>>
>
> Last time I checked the variable renames carefully, now I'm trusting
> that those have not been broken/modified since v1.
>
> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During Static Paging
[not found] ` <1675D34B1BADE93C.32393@groups.io>
@ 2021-04-19 17:24 ` Kun Qin
0 siblings, 0 replies; 7+ messages in thread
From: Kun Qin @ 2021-04-19 17:24 UTC (permalink / raw)
To: devel, Ray Ni; +Cc: Eric Dong, Laszlo Ersek, Rahul Kumar
Hi Ray,
Would you please provide feedback for this patch?
It is already reviewed by Laszlo here:
https://edk2.groups.io/g/devel/message/74122. Could you please let me
know what it takes after your review? I can send a v3 for reviewed-by
tags if necessary.
Thanks in advance,
Kun
On 04/14/2021 13:25, Kun Qin via groups.io wrote:
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3300
>
> Current implementation of SetStaticPageTable routine in PiSmmCpuDxeSmm
> driver will check a global variable mPhysicalAddressBits, and eventually
> cap any value larger than 39 at 39.
>
> This global variable is used in ConvertMemoryPageAttributes, which backs
> SmmSetMemoryAttributes and SmmClearMemoryAttributes. Thus for a processor
> that supports more than 39 bits width, trying to mark page table regions
> higher than 39-bit will always return EFI_UNSUPPROTED.
>
> This change updated the interface of SetStaticPageTable function to take
> PhysicalAddressBits as an input parameter, in order to avoid changing/
> accessing the global variable.
>
> Cc: Eric Dong <eric.dong@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Laszlo Ersek <lersek@redhat.com>
> Cc: Rahul Kumar <rahul1.kumar@intel.com>
>
> Fixes: 4eee0cc7cc0db74489b99c19eba056b53eda6358
> Signed-off-by: Kun Qin <kuqin12@gmail.com>
> ---
>
> Notes:
> v2:
> - SetStaticPageTable interface update [Ray]
> - Commit message updates, variable type change [Laszlo]
>
> UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c | 30 +++++++++++---------
> 1 file changed, 16 insertions(+), 14 deletions(-)
>
> diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
> index 6902584b1fbd..d6f8dd94d303 100644
> --- a/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
> +++ b/UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c
> @@ -211,11 +211,13 @@ CalculateMaximumSupportAddress (
> /**
> Set static page table.
>
> - @param[in] PageTable Address of page table.
> + @param[in] PageTable Address of page table.
> + @param[in] PhysicalAddressBits The maximum physical address bits supported.
> **/
> VOID
> SetStaticPageTable (
> - IN UINTN PageTable
> + IN UINTN PageTable,
> + IN UINT8 PhysicalAddressBits
> )
> {
> UINT64 PageAddress;
> @@ -237,26 +239,26 @@ SetStaticPageTable (
> // IA-32e paging translates 48-bit linear addresses to 52-bit physical addresses
> // when 5-Level Paging is disabled.
> //
> - ASSERT (mPhysicalAddressBits <= 52);
> - if (!m5LevelPagingNeeded && mPhysicalAddressBits > 48) {
> - mPhysicalAddressBits = 48;
> + ASSERT (PhysicalAddressBits <= 52);
> + if (!m5LevelPagingNeeded && PhysicalAddressBits > 48) {
> + PhysicalAddressBits = 48;
> }
>
> NumberOfPml5EntriesNeeded = 1;
> - if (mPhysicalAddressBits > 48) {
> - NumberOfPml5EntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 48);
> - mPhysicalAddressBits = 48;
> + if (PhysicalAddressBits > 48) {
> + NumberOfPml5EntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 48);
> + PhysicalAddressBits = 48;
> }
>
> NumberOfPml4EntriesNeeded = 1;
> - if (mPhysicalAddressBits > 39) {
> - NumberOfPml4EntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 39);
> - mPhysicalAddressBits = 39;
> + if (PhysicalAddressBits > 39) {
> + NumberOfPml4EntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 39);
> + PhysicalAddressBits = 39;
> }
>
> NumberOfPdpEntriesNeeded = 1;
> - ASSERT (mPhysicalAddressBits > 30);
> - NumberOfPdpEntriesNeeded = (UINTN) LShiftU64 (1, mPhysicalAddressBits - 30);
> + ASSERT (PhysicalAddressBits > 30);
> + NumberOfPdpEntriesNeeded = (UINTN) LShiftU64 (1, PhysicalAddressBits - 30);
>
> //
> // By architecture only one PageMapLevel4 exists - so lets allocate storage for it.
> @@ -438,7 +440,7 @@ SmmInitPageTable (
> // When access to non-SMRAM memory is restricted, create page table
> // that covers all memory space.
> //
> - SetStaticPageTable ((UINTN)PTEntry);
> + SetStaticPageTable ((UINTN)PTEntry, mPhysicalAddressBits);
> } else {
> //
> // Add pages to page pool
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During Static Paging
2021-04-14 20:25 ` [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During " Kun Qin
2021-04-15 10:41 ` Laszlo Ersek
@ 2021-04-19 22:28 ` Ni, Ray
2021-04-20 20:12 ` Kun Qin
1 sibling, 1 reply; 7+ messages in thread
From: Ni, Ray @ 2021-04-19 22:28 UTC (permalink / raw)
To: Kun Qin, devel
[-- Attachment #1: Type: text/plain, Size: 31 bytes --]
Reviewed-by: ray.ni@intel.com
[-- Attachment #2: Type: text/html, Size: 38 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [edk2-devel] [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During Static Paging
2021-04-19 22:28 ` [edk2-devel] " Ni, Ray
@ 2021-04-20 20:12 ` Kun Qin
0 siblings, 0 replies; 7+ messages in thread
From: Kun Qin @ 2021-04-20 20:12 UTC (permalink / raw)
To: Ni, Ray, devel
Hi Ray,
Thanks for reviewing and merging the change.
Regards,
Kun
On 04/19/2021 15:28, Ni, Ray wrote:
> Reviewed-by: ray.ni@intel.com
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-04-20 20:13 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-14 20:25 [PATCH v2 0/1] Not to Update Bitwidth Variable in Static Paging Kun Qin
2021-04-14 20:25 ` [PATCH v2 1/1] UefiCpuPkg: PiSmmCpuDxeSmm: Not to Change Bitwidth During " Kun Qin
2021-04-15 10:41 ` Laszlo Ersek
2021-04-16 5:17 ` Kun Qin
2021-04-19 22:28 ` [edk2-devel] " Ni, Ray
2021-04-20 20:12 ` Kun Qin
[not found] ` <1675D34B1BADE93C.32393@groups.io>
2021-04-19 17:24 ` Kun Qin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox