public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Gao, Liming" <liming.gao@intel.com>
To: "Zhang, Shenglei" <shenglei.zhang@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: "Kinney, Michael D" <michael.d.kinney@intel.com>,
	Leif Lindholm <leif.lindholm@linaro.org>,
	Laszlo Ersek <lersek@redhat.com>,
	"Wang, Jian J" <jian.j.wang@intel.com>,
	"Wu, Hao A" <hao.a.wu@intel.com>,
	"Zeng, Star" <star.zeng@intel.com>, "Ni, Ray" <ray.ni@intel.com>,
	"Carsey, Jaben" <jaben.carsey@intel.com>
Subject: Re: [PATCH v4 0/7] Introduce two public functions and remove internal ones
Date: Tue, 29 Jan 2019 03:10:06 +0000	[thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E3D1B6F@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <20181225081717.2776-1-shenglei.zhang@intel.com>

Reviewed-by: Liming Gao <liming.gao@intel.com> for this patch set.

> -----Original Message-----
> From: Zhang, Shenglei
> Sent: Tuesday, December 25, 2018 4:17 PM
> To: edk2-devel@lists.01.org
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>; Leif Lindholm <leif.lindholm@linaro.org>;
> Laszlo Ersek <lersek@redhat.com>; Wang, Jian J <jian.j.wang@intel.com>; Wu, Hao A <hao.a.wu@intel.com>; Zeng, Star
> <star.zeng@intel.com>; Ni, Ruiyu <ruiyu.ni@intel.com>; Carsey, Jaben <jaben.carsey@intel.com>
> Subject: [PATCH v4 0/7] Introduce two public functions and remove internal ones
> 
> Introduce public functions CharToUpper and AsciiToUpper.
> Remove internal functions InternalCharToUpper and InternalBaseLibAsciiToUpper.
> 
> v2: Update the title and commit message of 1/3.
> 
> v3: 1.Add a patch to remove AsciiToUpper in EdbSupportString.c.
>     2.Revert the changes in Basetools.
> 
> v4: 1.Add1/7: Change function names in EdbSupportString.c.
>     2.Update the title of 4/7.
>     3.Add 5/7: Use BaseLib api AsciiToUpper in DxeHttpLib.c.
>     4.Add 6/7: Use BaseLib api CharToUpper in ShellManParser.c.
>     5.Add 7/7: Use BaseLib api CharToUpper in UefiShellLib.c.
> 
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> Cc: Leif Lindholm <leif.lindholm@linaro.org>
> Cc: Laszlo Ersek <lersek@redhat.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Hao Wu <hao.a.wu@intel.com>
> Cc: Star Zeng <star.zeng@intel.com>
> Cc: Ruiyu Ni <ruiyu.ni@intel.com>
> Cc: Jaben Carsey <jaben.carsey@intel.com>
> Shenglei Zhang (7):
>   MdeModulePkg/EbcDebugger: Change function names
>   MdePkg/BaseLib: Introduce CharToUpper and AsciiToUpper publicly
>   MdePkg/BaseLib: Remove InternalCharToUpper and
>     InternalBaseLibAsciiToUpper
>   MdeModulePkg/EbcDebugger: Use BaseLib apis AsciiToUpper and
>     CharToUpper
>   MdeModulePkg/DxeHttpLib: Use BaseLib api AsciiToUpper
>   ShellPkg/Shell: Use BaseLib api CharToUpper
>   ShellPkg/UefiShellLib: Use BaseLib api CharToUpper
> 
>  MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.c  | 23 +---------
>  .../EbcDxe/EbcDebugger/EdbSupportString.c     | 39 ++---------------
>  MdePkg/Include/Library/BaseLib.h              | 40 ++++++++++++++++++
>  MdePkg/Library/BaseLib/BaseLibInternals.h     | 42 -------------------
>  MdePkg/Library/BaseLib/SafeString.c           |  8 ++--
>  MdePkg/Library/BaseLib/String.c               | 16 +++----
>  ShellPkg/Application/Shell/ShellManParser.c   | 23 +---------
>  ShellPkg/Library/UefiShellLib/UefiShellLib.c  | 31 +-------------
>  8 files changed, 60 insertions(+), 162 deletions(-)
> 
> --
> 2.18.0.windows.1



      parent reply	other threads:[~2019-01-29  3:10 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-25  8:17 [PATCH v4 0/7] Introduce two public functions and remove internal ones Shenglei Zhang
2018-12-25  8:17 ` [PATCH v4 1/7] MdeModulePkg/EbcDebugger: Change function names Shenglei Zhang
2018-12-25  8:40   ` Wu, Hao A
2018-12-25  8:17 ` [PATCH v4 2/7] MdePkg/BaseLib: Introduce CharToUpper and AsciiToUpper publicly Shenglei Zhang
2019-01-29  7:45   ` Ni, Ruiyu
2018-12-25  8:17 ` [PATCH v4 3/7] MdePkg/BaseLib: Remove definitions of two functions Shenglei Zhang
2018-12-25  8:17 ` [PATCH v4 4/7] MdeModulePkg/EbcDebugger: Use AsciiToUpper and CharToUpper Shenglei Zhang
2018-12-25  8:43   ` Wu, Hao A
2018-12-25  8:17 ` [PATCH v4 5/7] MdeModulePkg/DxeHttpLib: Use BaseLib api AsciiToUpper Shenglei Zhang
2018-12-25  8:46   ` Wu, Hao A
2018-12-25  8:17 ` [PATCH v4 6/7] ShellPkg/Shell: Use BaseLib api CharToUpper Shenglei Zhang
2018-12-31 21:22   ` Carsey, Jaben
2018-12-25  8:17 ` [PATCH v4 7/7] ShellPkg/UefiShellLib: " Shenglei Zhang
2018-12-31 21:22   ` Carsey, Jaben
2018-12-26 20:11 ` [PATCH v4 0/7] Introduce two public functions and remove internal ones Laszlo Ersek
2019-01-29  3:10 ` Gao, Liming [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=4A89E2EF3DFEDB4C8BFDE51014F606A14E3D1B6F@SHSMSX104.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