public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Laszlo Ersek" <lersek@redhat.com>
To: "Ni, Ray" <ray.ni@intel.com>,
	"Zhou, Jianfeng" <jianfeng.zhou@intel.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Kumar, Rahul R" <rahul.r.kumar@intel.com>,
	Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [edk2-devel] [PATCH] UefiCpuPkg: Fix IN OUT parameters marked as IN
Date: Wed, 21 Feb 2024 21:06:48 +0100	[thread overview]
Message-ID: <5b38efb8-8d99-1540-afb0-b46be55e89cd@redhat.com> (raw)
In-Reply-To: <MN6PR11MB824415D4CE9D820681F85A8E8C572@MN6PR11MB8244.namprd11.prod.outlook.com>

On 2/21/24 06:46, Ni, Ray wrote:
> Reviewed-by: Ray Ni <ray.ni@intel.com>

Thank you Ray for reviewing this; I'm happy if this goes in with your
review.

Laszlo

> 
> Thanks,
> Ray
>> -----Original Message-----
>> From: Zhou, Jianfeng <jianfeng.zhou@intel.com>
>> Sent: Wednesday, February 21, 2024 9:25 AM
>> To: devel@edk2.groups.io
>> Cc: Zhou, Jianfeng <jianfeng.zhou@intel.com>; Ni, Ray <ray.ni@intel.com>;
>> Laszlo Ersek <lersek@redhat.com>; Kumar, Rahul R
>> <rahul.r.kumar@intel.com>; Gerd Hoffmann <kraxel@redhat.com>
>> Subject: [PATCH] UefiCpuPkg: Fix IN OUT parameters marked as IN
>>
>> Some IN OUT parameters in CpuPageTableMap.c were mistakenly marked as
>> IN.
>> "IN" replaced with "IN OUT" in the following interfaces:
>>
>> PageTableLibSetPte4K(): Pte4K
>> PageTableLibSetPleB():  PleB
>> PageTableLibSetPle():   Ple
>> PageTableLibSetPnle():  Pnle
>>
>> Signed-off-by: Zhou Jianfeng <jianfeng.zhou@intel.com>
>> Cc: Ray Ni <ray.ni@intel.com>
>> Cc: Laszlo Ersek <lersek@redhat.com>
>> Cc: Rahul Kumar <rahul1.kumar@intel.com>
>> Cc: Gerd Hoffmann <kraxel@redhat.com>
>> ---
>>  .../Library/CpuPageTableLib/CpuPageTableMap.c | 32 +++++++++----------
>>  1 file changed, 16 insertions(+), 16 deletions(-)
>>
>> diff --git a/UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableMap.c
>> b/UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableMap.c
>> index ae4caf8dfe..2ea40666cc 100644
>> --- a/UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableMap.c
>> +++ b/UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableMap.c
>> @@ -20,10 +20,10 @@
>>  **/
>>
>>  VOID
>>
>>  PageTableLibSetPte4K (
>>
>> -  IN IA32_PTE_4K         *Pte4K,
>>
>> -  IN UINT64              Offset,
>>
>> -  IN IA32_MAP_ATTRIBUTE  *Attribute,
>>
>> -  IN IA32_MAP_ATTRIBUTE  *Mask
>>
>> +  IN OUT IA32_PTE_4K         *Pte4K,
>>
>> +  IN UINT64                  Offset,
>>
>> +  IN IA32_MAP_ATTRIBUTE      *Attribute,
>>
>> +  IN IA32_MAP_ATTRIBUTE      *Mask
>>
>>    )
>>
>>  {
>>
>>    IA32_PTE_4K  LocalPte4K;
>>
>> @@ -94,10 +94,10 @@ PageTableLibSetPte4K (
>>  **/
>>
>>  VOID
>>
>>  PageTableLibSetPleB (
>>
>> -  IN IA32_PAGE_LEAF_ENTRY_BIG_PAGESIZE  *PleB,
>>
>> -  IN UINT64                             Offset,
>>
>> -  IN IA32_MAP_ATTRIBUTE                 *Attribute,
>>
>> -  IN IA32_MAP_ATTRIBUTE                 *Mask
>>
>> +  IN OUT IA32_PAGE_LEAF_ENTRY_BIG_PAGESIZE  *PleB,
>>
>> +  IN UINT64                                 Offset,
>>
>> +  IN IA32_MAP_ATTRIBUTE                     *Attribute,
>>
>> +  IN IA32_MAP_ATTRIBUTE                     *Mask
>>
>>    )
>>
>>  {
>>
>>    IA32_PAGE_LEAF_ENTRY_BIG_PAGESIZE  LocalPleB;
>>
>> @@ -171,11 +171,11 @@ PageTableLibSetPleB (
>>  **/
>>
>>  VOID
>>
>>  PageTableLibSetPle (
>>
>> -  IN UINTN               Level,
>>
>> -  IN IA32_PAGING_ENTRY   *Ple,
>>
>> -  IN UINT64              Offset,
>>
>> -  IN IA32_MAP_ATTRIBUTE  *Attribute,
>>
>> -  IN IA32_MAP_ATTRIBUTE  *Mask
>>
>> +  IN UINTN                   Level,
>>
>> +  IN OUT IA32_PAGING_ENTRY   *Ple,
>>
>> +  IN UINT64                  Offset,
>>
>> +  IN IA32_MAP_ATTRIBUTE      *Attribute,
>>
>> +  IN IA32_MAP_ATTRIBUTE      *Mask
>>
>>    )
>>
>>  {
>>
>>    if (Level == 1) {
>>
>> @@ -195,9 +195,9 @@ PageTableLibSetPle (
>>  **/
>>
>>  VOID
>>
>>  PageTableLibSetPnle (
>>
>> -  IN IA32_PAGE_NON_LEAF_ENTRY  *Pnle,
>>
>> -  IN IA32_MAP_ATTRIBUTE        *Attribute,
>>
>> -  IN IA32_MAP_ATTRIBUTE        *Mask
>>
>> +  IN OUT IA32_PAGE_NON_LEAF_ENTRY  *Pnle,
>>
>> +  IN IA32_MAP_ATTRIBUTE            *Attribute,
>>
>> +  IN IA32_MAP_ATTRIBUTE            *Mask
>>
>>    )
>>
>>  {
>>
>>    IA32_PAGE_NON_LEAF_ENTRY  LocalPnle;
>>
>> --
>> 2.31.1.windows.1
> 



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#115739): https://edk2.groups.io/g/devel/message/115739
Mute This Topic: https://groups.io/mt/104483605/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



  reply	other threads:[~2024-02-21 20:06 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-21  1:24 [edk2-devel] [PATCH] UefiCpuPkg: Fix IN OUT parameters marked as IN Zhou Jianfeng
2024-02-21  5:46 ` Ni, Ray
2024-02-21 20:06   ` Laszlo Ersek [this message]
2024-02-21 20:12     ` Laszlo Ersek

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=5b38efb8-8d99-1540-afb0-b46be55e89cd@redhat.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