public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Gao, Zhichao" <zhichao.gao@intel.com>
To: "Gao, Liming" <liming.gao@intel.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>,
	"Zhang, Shenglei" <shenglei.zhang@intel.com>
Cc: "Carsey, Jaben" <jaben.carsey@intel.com>, "Ni, Ray" <ray.ni@intel.com>
Subject: Re: [edk2-devel] [PATCH 1/1] ShellPkg/UefiShellAcpiViewCommandLib: Replace shift logical left
Date: Fri, 16 Aug 2019 06:10:29 +0000	[thread overview]
Message-ID: <3CE959C139B4C44DBEA1810E3AA6F9000B823189@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <4A89E2EF3DFEDB4C8BFDE51014F606A14E4D2454@SHSMSX104.ccr.corp.intel.com>

Thanks for correcting my mistake.

Shenglei,
  Please fix it.

Thanks,
Zhichao

> -----Original Message-----
> From: Gao, Liming
> Sent: Friday, August 16, 2019 2:00 PM
> To: devel@edk2.groups.io; Gao, Zhichao <zhichao.gao@intel.com>; Zhang,
> Shenglei <shenglei.zhang@intel.com>
> Cc: Carsey, Jaben <jaben.carsey@intel.com>; Ni, Ray <ray.ni@intel.com>
> Subject: RE: [edk2-devel] [PATCH 1/1]
> ShellPkg/UefiShellAcpiViewCommandLib: Replace shift logical left
> 
> Shenglei:
> 
> >-----Original Message-----
> >From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> >Gao, Zhichao
> >Sent: Friday, August 16, 2019 12:08 PM
> >To: Zhang, Shenglei <shenglei.zhang@intel.com>; devel@edk2.groups.io
> >Cc: Carsey, Jaben <jaben.carsey@intel.com>; Ni, Ray <ray.ni@intel.com>
> >Subject: Re: [edk2-devel] [PATCH 1/1]
> >ShellPkg/UefiShellAcpiViewCommandLib: Replace shift logical left
> >
> >Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
> >
> >Thanks,
> >Zhichao
> >
> >> -----Original Message-----
> >> From: Zhang, Shenglei
> >> Sent: Thursday, August 15, 2019 3:38 PM
> >> To: devel@edk2.groups.io
> >> Cc: Carsey, Jaben <jaben.carsey@intel.com>; Ni, Ray
> >> <ray.ni@intel.com>; Gao, Zhichao <zhichao.gao@intel.com>
> >> Subject: [PATCH 1/1] ShellPkg/UefiShellAcpiViewCommandLib: Replace
> >> shift logical left
> >>
> >> Replace the operation to shift logical left with the function
> >> LShiftU64, which has the same functionality.
> >> The original code causes ShellPkg build failure with build target"-b
> NOOPT".
> >>
> >> Cc: Jaben Carsey <jaben.carsey@intel.com>
> >> Cc: Ray Ni <ray.ni@intel.com>
> >> Cc: Zhichao Gao <zhichao.gao@intel.com>
> >> Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
> >> ---
> >>  ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c | 2 +-
> >>  1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git
> >> a/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c
> >> b/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c
> >> index 2d6ff80e299e..2e6d99145beb 100644
> >> --- a/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c
> >> +++ b/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c
> >> @@ -290,7 +290,7 @@ DumpUint64 (
> >>
> >>    Val = *(UINT32*)(Ptr + sizeof (UINT32));
> >>
> >> -  Val <<= 32;
> >> +  LShiftU64(Val,32);
> 
> The logic should be:
> 
> Val = LShiftU64(Val,32);
> 
> Thanks
> Liming
> 
> >>    Val |= (UINT64)*(UINT32*)Ptr;
> >>
> >>    Print (Format, Val);
> >> --
> >> 2.18.0.windows.1
> >
> >
> >


      reply	other threads:[~2019-08-16  6:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-15  7:37 [PATCH 1/1] ShellPkg/UefiShellAcpiViewCommandLib: Replace shift logical left Zhang, Shenglei
2019-08-16  4:07 ` Gao, Zhichao
2019-08-16  6:00   ` [edk2-devel] " Liming Gao
2019-08-16  6:10     ` Gao, Zhichao [this message]

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=3CE959C139B4C44DBEA1810E3AA6F9000B823189@SHSMSX101.ccr.corp.intel.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