public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* Re: [edk2-devel] [PATCH v3 0/8] Fix imbalanced debug macros
       [not found] <17112B4EDBB29064.15579@groups.io>
@ 2022-09-02 22:28 ` Michael Kubacki
  2022-09-09  1:03 ` Michael Kubacki
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Kubacki @ 2022-09-02 22:28 UTC (permalink / raw)
  To: devel
  Cc: Ard Biesheuvel, Jiewen Yao, Jordan Justen, Gerd Hoffmann,
	David Woodhouse, Ni, Ray

Hello OvmfPkg & FatPkg maintainers,

This series only needs a Reviewed-by from these packages. It should take 
less than a couple minutes of your time.

Thanks,
Michael

On 9/2/2022 6:21 PM, Michael Kubacki wrote:
> From: Michael Kubacki <michael.kubacki@microsoft.com>
> 
> After noticing a few occurrences of DEBUG macros with a mismatched
> number of arguments, I wrote a script to automatically detect this.
> 
> This patch series is the result of matches found by the script.
> 
> In some cases it is not obvious what was originally intended so I
> have attempted to capture what I believe was the original author's
> intention.
> 
> V3 Changes:
> Updated R-b tags.
> 1. ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c:
>     - Repeated BufferSizeInBytes argument per Leif's feedback
> 2. MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPei.c:
>     - Fixed an additional error on Line 267
> 
> V2 Changes:
> These additional errors were found while finishing testing of
> the script.
> 
> 1. Add DynamicTablesPkg/AcpiPpttLibArm patch for the change in
>     - DynamicTablesPkg/Library/Acpi/Arm/AcpiPpttLibArm/PpttGenerator.c
> 2. Update MdeModulePkg patch to include the change in
>     - MdeModulePkg/Universal/CapsulePei/UefiCapsule.c
> 3. Add following to the RedfishPkg fix patch:
>     - RedfishPkg/RedfishDiscoverDxe/RedfishDiscoverDxe.c
>     - RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c
> 4. Add NetworkPkg patch for the change in
>     - NetworkPkg/TcpDxe/SockInterface.c
> 5. Add OvmfPkg patch for the change in
>     - OvmfPkg/Csm/LegacyBootManagerLib/LegacyBm.c
> 
> Cc: Abner Chang <abner.chang@amd.com>
> Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>
> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
> Cc: Dandan Bi <dandan.bi@intel.com>
> Cc: David Woodhouse <dwmw2@infradead.org>
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Cc: Guomin Jiang <guomin.jiang@intel.com>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Jiaxin Wu <jiaxin.wu@intel.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Jordan Justen <jordan.l.justen@intel.com>
> Cc: Leif Lindholm <quic_llindhol@quicinc.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com>
> Cc: Nickle Wang <nickle.wang@hpe.com>
> Cc: Qi Zhang <qi1.zhang@intel.com>
> Cc: Rahul Kumar <rahul1.kumar@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Sami Mujawar <Sami.Mujawar@arm.com>
> Cc: Siyuan Fu <siyuan.fu@intel.com>
> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
> 
> Michael Kubacki (8):
>    ArmPlatformPkg/NorFlashDxe: Remove unused debug print specifier
>    FatPkg/FatPei: Remove extraneous debug message argument
>    MdeModulePkg: Fix imbalanced debug macros
>    RedfishPkg/RedfishRestExDxe: Remove extra debug macro argument
>    SecurityPkg/SmmTcg2PhysicalPresenceLib: Add missing debug print
>      specifier
>    DynamicTablesPkg/AcpiPpttLibArm: Fix debug macro arguments
>    NetworkPkg/TcpDxe: Fix debug macro arguments
>    OvmfPkg/LegacyBootManagerLib: Fix debug macro arguments
> 
>   ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c                                  |  4 ++--
>   DynamicTablesPkg/Library/Acpi/Arm/AcpiPpttLibArm/PpttGenerator.c                         |  3 +--
>   FatPkg/FatPei/Gpt.c                                                                      |  2 +-
>   MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPei.c                                       |  2 +-
>   MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c                                         |  2 +-
>   MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c                                               |  8 ++++----
>   MdeModulePkg/Core/Dxe/Image/Image.c                                                      |  2 +-
>   MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.c |  2 +-
>   MdeModulePkg/Universal/CapsulePei/UefiCapsule.c                                          |  2 +-
>   NetworkPkg/TcpDxe/SockInterface.c                                                        | 12 ++----------
>   OvmfPkg/Csm/LegacyBootManagerLib/LegacyBm.c                                              |  6 +++---
>   RedfishPkg/RedfishDiscoverDxe/RedfishDiscoverDxe.c                                       |  6 +++---
>   RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c                             |  2 +-
>   RedfishPkg/RedfishRestExDxe/RedfishRestExProtocol.c                                      |  2 +-
>   SecurityPkg/Library/SmmTcg2PhysicalPresenceLib/MmTcg2PhysicalPresenceLibCommon.c         |  2 +-
>   15 files changed, 24 insertions(+), 33 deletions(-)
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [edk2-devel] [PATCH v3 0/8] Fix imbalanced debug macros
       [not found] <17112B4EDBB29064.15579@groups.io>
  2022-09-02 22:28 ` [edk2-devel] [PATCH v3 0/8] Fix imbalanced debug macros Michael Kubacki
@ 2022-09-09  1:03 ` Michael Kubacki
  2022-09-09  1:29   ` Michael D Kinney
  1 sibling, 1 reply; 4+ messages in thread
From: Michael Kubacki @ 2022-09-09  1:03 UTC (permalink / raw)
  To: devel, Michael D Kinney
  Cc: Abner Chang, Alexei Fedorov, Ard Biesheuvel, Dandan Bi,
	David Woodhouse, Gerd Hoffmann, Guomin Jiang, Hao A Wu,
	Jian J Wang, Jiaxin Wu, Jiewen Yao, Jordan Justen, Leif Lindholm,
	Liming Gao, Maciej Rabeda, Nickle Wang, Qi Zhang, Rahul Kumar,
	Ray Ni, Sami Mujawar, Siyuan Fu

The patch series has now received a R-b tag for each package. No content 
changes were requested in v3.

I rebased the branch to edk2/master, added all v3 review tags, updated 
Nickle's email address, and pushed the changes to update the PR - 
https://github.com/tianocore/edk2/pull/3171.

The PR should be ready for the push tag. Mike Kinney, do you have a 
recommendation for who should do that for this series?

Thanks,
Michael

On 9/2/2022 6:21 PM, Michael Kubacki wrote:
> From: Michael Kubacki <michael.kubacki@microsoft.com>
> 
> After noticing a few occurrences of DEBUG macros with a mismatched
> number of arguments, I wrote a script to automatically detect this.
> 
> This patch series is the result of matches found by the script.
> 
> In some cases it is not obvious what was originally intended so I
> have attempted to capture what I believe was the original author's
> intention.
> 
> V3 Changes:
> Updated R-b tags.
> 1. ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c:
>     - Repeated BufferSizeInBytes argument per Leif's feedback
> 2. MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPei.c:
>     - Fixed an additional error on Line 267
> 
> V2 Changes:
> These additional errors were found while finishing testing of
> the script.
> 
> 1. Add DynamicTablesPkg/AcpiPpttLibArm patch for the change in
>     - DynamicTablesPkg/Library/Acpi/Arm/AcpiPpttLibArm/PpttGenerator.c
> 2. Update MdeModulePkg patch to include the change in
>     - MdeModulePkg/Universal/CapsulePei/UefiCapsule.c
> 3. Add following to the RedfishPkg fix patch:
>     - RedfishPkg/RedfishDiscoverDxe/RedfishDiscoverDxe.c
>     - RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c
> 4. Add NetworkPkg patch for the change in
>     - NetworkPkg/TcpDxe/SockInterface.c
> 5. Add OvmfPkg patch for the change in
>     - OvmfPkg/Csm/LegacyBootManagerLib/LegacyBm.c
> 
> Cc: Abner Chang <abner.chang@amd.com>
> Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>
> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
> Cc: Dandan Bi <dandan.bi@intel.com>
> Cc: David Woodhouse <dwmw2@infradead.org>
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Cc: Guomin Jiang <guomin.jiang@intel.com>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Jiaxin Wu <jiaxin.wu@intel.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Jordan Justen <jordan.l.justen@intel.com>
> Cc: Leif Lindholm <quic_llindhol@quicinc.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com>
> Cc: Nickle Wang <nickle.wang@hpe.com>
> Cc: Qi Zhang <qi1.zhang@intel.com>
> Cc: Rahul Kumar <rahul1.kumar@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Sami Mujawar <Sami.Mujawar@arm.com>
> Cc: Siyuan Fu <siyuan.fu@intel.com>
> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
> 
> Michael Kubacki (8):
>    ArmPlatformPkg/NorFlashDxe: Remove unused debug print specifier
>    FatPkg/FatPei: Remove extraneous debug message argument
>    MdeModulePkg: Fix imbalanced debug macros
>    RedfishPkg/RedfishRestExDxe: Remove extra debug macro argument
>    SecurityPkg/SmmTcg2PhysicalPresenceLib: Add missing debug print
>      specifier
>    DynamicTablesPkg/AcpiPpttLibArm: Fix debug macro arguments
>    NetworkPkg/TcpDxe: Fix debug macro arguments
>    OvmfPkg/LegacyBootManagerLib: Fix debug macro arguments
> 
>   ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c                                  |  4 ++--
>   DynamicTablesPkg/Library/Acpi/Arm/AcpiPpttLibArm/PpttGenerator.c                         |  3 +--
>   FatPkg/FatPei/Gpt.c                                                                      |  2 +-
>   MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPei.c                                       |  2 +-
>   MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c                                         |  2 +-
>   MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c                                               |  8 ++++----
>   MdeModulePkg/Core/Dxe/Image/Image.c                                                      |  2 +-
>   MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.c |  2 +-
>   MdeModulePkg/Universal/CapsulePei/UefiCapsule.c                                          |  2 +-
>   NetworkPkg/TcpDxe/SockInterface.c                                                        | 12 ++----------
>   OvmfPkg/Csm/LegacyBootManagerLib/LegacyBm.c                                              |  6 +++---
>   RedfishPkg/RedfishDiscoverDxe/RedfishDiscoverDxe.c                                       |  6 +++---
>   RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c                             |  2 +-
>   RedfishPkg/RedfishRestExDxe/RedfishRestExProtocol.c                                      |  2 +-
>   SecurityPkg/Library/SmmTcg2PhysicalPresenceLib/MmTcg2PhysicalPresenceLibCommon.c         |  2 +-
>   15 files changed, 24 insertions(+), 33 deletions(-)
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [edk2-devel] [PATCH v3 0/8] Fix imbalanced debug macros
  2022-09-09  1:03 ` Michael Kubacki
@ 2022-09-09  1:29   ` Michael D Kinney
  2022-09-09  1:45     ` Michael Kubacki
  0 siblings, 1 reply; 4+ messages in thread
From: Michael D Kinney @ 2022-09-09  1:29 UTC (permalink / raw)
  To: devel@edk2.groups.io, mikuback@linux.microsoft.com,
	Kinney, Michael D
  Cc: Abner Chang, Alexei Fedorov, Ard Biesheuvel, Bi, Dandan,
	David Woodhouse, Gerd Hoffmann, Jiang, Guomin, Wu, Hao A,
	Wang, Jian J, Wu, Jiaxin, Yao, Jiewen, Justen, Jordan L,
	Leif Lindholm, Gao, Liming, Maciej Rabeda, Wang, Nickle,
	Zhang, Qi1, Kumar, Rahul R, Ni, Ray, Sami Mujawar, Siyuan Fu

Michael,

You have all the reviews and commit messages are updated and you are a maintainer.

So you are welcome to add push label.

Thanks,

Mike

> -----Original Message-----
> From: Michael Kubacki <mikuback@linux.microsoft.com>
> Sent: Thursday, September 8, 2022 6:03 PM
> To: devel@edk2.groups.io; Kinney, Michael D <michael.d.kinney@intel.com>
> Cc: Abner Chang <abner.chang@amd.com>; Alexei Fedorov <Alexei.Fedorov@arm.com>; Ard Biesheuvel <ardb+tianocore@kernel.org>;
> Bi, Dandan <dandan.bi@intel.com>; David Woodhouse <dwmw2@infradead.org>; Gerd Hoffmann <kraxel@redhat.com>; Jiang, Guomin
> <guomin.jiang@intel.com>; Wu, Hao A <hao.a.wu@intel.com>; Wang, Jian J <jian.j.wang@intel.com>; Wu, Jiaxin
> <jiaxin.wu@intel.com>; Yao, Jiewen <jiewen.yao@intel.com>; Justen, Jordan L <jordan.l.justen@intel.com>; Leif Lindholm
> <quic_llindhol@quicinc.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Maciej Rabeda <maciej.rabeda@linux.intel.com>; Wang,
> Nickle <nickle.wang@hpe.com>; Zhang, Qi1 <qi1.zhang@intel.com>; Kumar, Rahul R <rahul.r.kumar@intel.com>; Ni, Ray
> <ray.ni@intel.com>; Sami Mujawar <Sami.Mujawar@arm.com>; Siyuan Fu <siyuan.fu@intel.com>
> Subject: Re: [edk2-devel] [PATCH v3 0/8] Fix imbalanced debug macros
> 
> The patch series has now received a R-b tag for each package. No content
> changes were requested in v3.
> 
> I rebased the branch to edk2/master, added all v3 review tags, updated
> Nickle's email address, and pushed the changes to update the PR -
> https://github.com/tianocore/edk2/pull/3171.
> 
> The PR should be ready for the push tag. Mike Kinney, do you have a
> recommendation for who should do that for this series?
> 
> Thanks,
> Michael
> 
> On 9/2/2022 6:21 PM, Michael Kubacki wrote:
> > From: Michael Kubacki <michael.kubacki@microsoft.com>
> >
> > After noticing a few occurrences of DEBUG macros with a mismatched
> > number of arguments, I wrote a script to automatically detect this.
> >
> > This patch series is the result of matches found by the script.
> >
> > In some cases it is not obvious what was originally intended so I
> > have attempted to capture what I believe was the original author's
> > intention.
> >
> > V3 Changes:
> > Updated R-b tags.
> > 1. ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c:
> >     - Repeated BufferSizeInBytes argument per Leif's feedback
> > 2. MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPei.c:
> >     - Fixed an additional error on Line 267
> >
> > V2 Changes:
> > These additional errors were found while finishing testing of
> > the script.
> >
> > 1. Add DynamicTablesPkg/AcpiPpttLibArm patch for the change in
> >     - DynamicTablesPkg/Library/Acpi/Arm/AcpiPpttLibArm/PpttGenerator.c
> > 2. Update MdeModulePkg patch to include the change in
> >     - MdeModulePkg/Universal/CapsulePei/UefiCapsule.c
> > 3. Add following to the RedfishPkg fix patch:
> >     - RedfishPkg/RedfishDiscoverDxe/RedfishDiscoverDxe.c
> >     - RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c
> > 4. Add NetworkPkg patch for the change in
> >     - NetworkPkg/TcpDxe/SockInterface.c
> > 5. Add OvmfPkg patch for the change in
> >     - OvmfPkg/Csm/LegacyBootManagerLib/LegacyBm.c
> >
> > Cc: Abner Chang <abner.chang@amd.com>
> > Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>
> > Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
> > Cc: Dandan Bi <dandan.bi@intel.com>
> > Cc: David Woodhouse <dwmw2@infradead.org>
> > Cc: Gerd Hoffmann <kraxel@redhat.com>
> > Cc: Guomin Jiang <guomin.jiang@intel.com>
> > Cc: Hao A Wu <hao.a.wu@intel.com>
> > Cc: Jian J Wang <jian.j.wang@intel.com>
> > Cc: Jiaxin Wu <jiaxin.wu@intel.com>
> > Cc: Jiewen Yao <jiewen.yao@intel.com>
> > Cc: Jordan Justen <jordan.l.justen@intel.com>
> > Cc: Leif Lindholm <quic_llindhol@quicinc.com>
> > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com>
> > Cc: Nickle Wang <nickle.wang@hpe.com>
> > Cc: Qi Zhang <qi1.zhang@intel.com>
> > Cc: Rahul Kumar <rahul1.kumar@intel.com>
> > Cc: Ray Ni <ray.ni@intel.com>
> > Cc: Sami Mujawar <Sami.Mujawar@arm.com>
> > Cc: Siyuan Fu <siyuan.fu@intel.com>
> > Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
> >
> > Michael Kubacki (8):
> >    ArmPlatformPkg/NorFlashDxe: Remove unused debug print specifier
> >    FatPkg/FatPei: Remove extraneous debug message argument
> >    MdeModulePkg: Fix imbalanced debug macros
> >    RedfishPkg/RedfishRestExDxe: Remove extra debug macro argument
> >    SecurityPkg/SmmTcg2PhysicalPresenceLib: Add missing debug print
> >      specifier
> >    DynamicTablesPkg/AcpiPpttLibArm: Fix debug macro arguments
> >    NetworkPkg/TcpDxe: Fix debug macro arguments
> >    OvmfPkg/LegacyBootManagerLib: Fix debug macro arguments
> >
> >   ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c                                  |  4 ++--
> >   DynamicTablesPkg/Library/Acpi/Arm/AcpiPpttLibArm/PpttGenerator.c                         |  3 +--
> >   FatPkg/FatPei/Gpt.c                                                                      |  2 +-
> >   MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPei.c                                       |  2 +-
> >   MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c                                         |  2 +-
> >   MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c                                               |  8 ++++----
> >   MdeModulePkg/Core/Dxe/Image/Image.c                                                      |  2 +-
> >   MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.c |  2 +-
> >   MdeModulePkg/Universal/CapsulePei/UefiCapsule.c                                          |  2 +-
> >   NetworkPkg/TcpDxe/SockInterface.c                                                        | 12 ++----------
> >   OvmfPkg/Csm/LegacyBootManagerLib/LegacyBm.c                                              |  6 +++---
> >   RedfishPkg/RedfishDiscoverDxe/RedfishDiscoverDxe.c                                       |  6 +++---
> >   RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c                             |  2 +-
> >   RedfishPkg/RedfishRestExDxe/RedfishRestExProtocol.c                                      |  2 +-
> >   SecurityPkg/Library/SmmTcg2PhysicalPresenceLib/MmTcg2PhysicalPresenceLibCommon.c         |  2 +-
> >   15 files changed, 24 insertions(+), 33 deletions(-)
> >

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [edk2-devel] [PATCH v3 0/8] Fix imbalanced debug macros
  2022-09-09  1:29   ` Michael D Kinney
@ 2022-09-09  1:45     ` Michael Kubacki
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Kubacki @ 2022-09-09  1:45 UTC (permalink / raw)
  To: devel, michael.d.kinney
  Cc: Abner Chang, Alexei Fedorov, Ard Biesheuvel, Bi, Dandan,
	David Woodhouse, Gerd Hoffmann, Jiang, Guomin, Wu, Hao A,
	Wang, Jian J, Wu, Jiaxin, Yao, Jiewen, Justen, Jordan L,
	Leif Lindholm, Gao, Liming, Maciej Rabeda, Wang, Nickle,
	Zhang, Qi1, Kumar, Rahul R, Ni, Ray, Sami Mujawar, Siyuan Fu

Thanks Mike and reviewers - 3171 is merged

On 9/8/2022 9:29 PM, Michael D Kinney wrote:
> Michael,
> 
> You have all the reviews and commit messages are updated and you are a maintainer.
> 
> So you are welcome to add push label.
> 
> Thanks,
> 
> Mike
> 
>> -----Original Message-----
>> From: Michael Kubacki <mikuback@linux.microsoft.com>
>> Sent: Thursday, September 8, 2022 6:03 PM
>> To: devel@edk2.groups.io; Kinney, Michael D <michael.d.kinney@intel.com>
>> Cc: Abner Chang <abner.chang@amd.com>; Alexei Fedorov <Alexei.Fedorov@arm.com>; Ard Biesheuvel <ardb+tianocore@kernel.org>;
>> Bi, Dandan <dandan.bi@intel.com>; David Woodhouse <dwmw2@infradead.org>; Gerd Hoffmann <kraxel@redhat.com>; Jiang, Guomin
>> <guomin.jiang@intel.com>; Wu, Hao A <hao.a.wu@intel.com>; Wang, Jian J <jian.j.wang@intel.com>; Wu, Jiaxin
>> <jiaxin.wu@intel.com>; Yao, Jiewen <jiewen.yao@intel.com>; Justen, Jordan L <jordan.l.justen@intel.com>; Leif Lindholm
>> <quic_llindhol@quicinc.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Maciej Rabeda <maciej.rabeda@linux.intel.com>; Wang,
>> Nickle <nickle.wang@hpe.com>; Zhang, Qi1 <qi1.zhang@intel.com>; Kumar, Rahul R <rahul.r.kumar@intel.com>; Ni, Ray
>> <ray.ni@intel.com>; Sami Mujawar <Sami.Mujawar@arm.com>; Siyuan Fu <siyuan.fu@intel.com>
>> Subject: Re: [edk2-devel] [PATCH v3 0/8] Fix imbalanced debug macros
>>
>> The patch series has now received a R-b tag for each package. No content
>> changes were requested in v3.
>>
>> I rebased the branch to edk2/master, added all v3 review tags, updated
>> Nickle's email address, and pushed the changes to update the PR -
>> https://github.com/tianocore/edk2/pull/3171.
>>
>> The PR should be ready for the push tag. Mike Kinney, do you have a
>> recommendation for who should do that for this series?
>>
>> Thanks,
>> Michael
>>
>> On 9/2/2022 6:21 PM, Michael Kubacki wrote:
>>> From: Michael Kubacki <michael.kubacki@microsoft.com>
>>>
>>> After noticing a few occurrences of DEBUG macros with a mismatched
>>> number of arguments, I wrote a script to automatically detect this.
>>>
>>> This patch series is the result of matches found by the script.
>>>
>>> In some cases it is not obvious what was originally intended so I
>>> have attempted to capture what I believe was the original author's
>>> intention.
>>>
>>> V3 Changes:
>>> Updated R-b tags.
>>> 1. ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c:
>>>      - Repeated BufferSizeInBytes argument per Leif's feedback
>>> 2. MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPei.c:
>>>      - Fixed an additional error on Line 267
>>>
>>> V2 Changes:
>>> These additional errors were found while finishing testing of
>>> the script.
>>>
>>> 1. Add DynamicTablesPkg/AcpiPpttLibArm patch for the change in
>>>      - DynamicTablesPkg/Library/Acpi/Arm/AcpiPpttLibArm/PpttGenerator.c
>>> 2. Update MdeModulePkg patch to include the change in
>>>      - MdeModulePkg/Universal/CapsulePei/UefiCapsule.c
>>> 3. Add following to the RedfishPkg fix patch:
>>>      - RedfishPkg/RedfishDiscoverDxe/RedfishDiscoverDxe.c
>>>      - RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c
>>> 4. Add NetworkPkg patch for the change in
>>>      - NetworkPkg/TcpDxe/SockInterface.c
>>> 5. Add OvmfPkg patch for the change in
>>>      - OvmfPkg/Csm/LegacyBootManagerLib/LegacyBm.c
>>>
>>> Cc: Abner Chang <abner.chang@amd.com>
>>> Cc: Alexei Fedorov <Alexei.Fedorov@arm.com>
>>> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
>>> Cc: Dandan Bi <dandan.bi@intel.com>
>>> Cc: David Woodhouse <dwmw2@infradead.org>
>>> Cc: Gerd Hoffmann <kraxel@redhat.com>
>>> Cc: Guomin Jiang <guomin.jiang@intel.com>
>>> Cc: Hao A Wu <hao.a.wu@intel.com>
>>> Cc: Jian J Wang <jian.j.wang@intel.com>
>>> Cc: Jiaxin Wu <jiaxin.wu@intel.com>
>>> Cc: Jiewen Yao <jiewen.yao@intel.com>
>>> Cc: Jordan Justen <jordan.l.justen@intel.com>
>>> Cc: Leif Lindholm <quic_llindhol@quicinc.com>
>>> Cc: Liming Gao <gaoliming@byosoft.com.cn>
>>> Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com>
>>> Cc: Nickle Wang <nickle.wang@hpe.com>
>>> Cc: Qi Zhang <qi1.zhang@intel.com>
>>> Cc: Rahul Kumar <rahul1.kumar@intel.com>
>>> Cc: Ray Ni <ray.ni@intel.com>
>>> Cc: Sami Mujawar <Sami.Mujawar@arm.com>
>>> Cc: Siyuan Fu <siyuan.fu@intel.com>
>>> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
>>>
>>> Michael Kubacki (8):
>>>     ArmPlatformPkg/NorFlashDxe: Remove unused debug print specifier
>>>     FatPkg/FatPei: Remove extraneous debug message argument
>>>     MdeModulePkg: Fix imbalanced debug macros
>>>     RedfishPkg/RedfishRestExDxe: Remove extra debug macro argument
>>>     SecurityPkg/SmmTcg2PhysicalPresenceLib: Add missing debug print
>>>       specifier
>>>     DynamicTablesPkg/AcpiPpttLibArm: Fix debug macro arguments
>>>     NetworkPkg/TcpDxe: Fix debug macro arguments
>>>     OvmfPkg/LegacyBootManagerLib: Fix debug macro arguments
>>>
>>>    ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashBlockIoDxe.c                                  |  4 ++--
>>>    DynamicTablesPkg/Library/Acpi/Arm/AcpiPpttLibArm/PpttGenerator.c                         |  3 +--
>>>    FatPkg/FatPei/Gpt.c                                                                      |  2 +-
>>>    MdeModulePkg/Bus/Pci/NvmExpressPei/NvmExpressPei.c                                       |  2 +-
>>>    MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c                                         |  2 +-
>>>    MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c                                               |  8 ++++----
>>>    MdeModulePkg/Core/Dxe/Image/Image.c                                                      |  2 +-
>>>    MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.c |  2 +-
>>>    MdeModulePkg/Universal/CapsulePei/UefiCapsule.c                                          |  2 +-
>>>    NetworkPkg/TcpDxe/SockInterface.c                                                        | 12 ++----------
>>>    OvmfPkg/Csm/LegacyBootManagerLib/LegacyBm.c                                              |  6 +++---
>>>    RedfishPkg/RedfishDiscoverDxe/RedfishDiscoverDxe.c                                       |  6 +++---
>>>    RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c                             |  2 +-
>>>    RedfishPkg/RedfishRestExDxe/RedfishRestExProtocol.c                                      |  2 +-
>>>    SecurityPkg/Library/SmmTcg2PhysicalPresenceLib/MmTcg2PhysicalPresenceLibCommon.c         |  2 +-
>>>    15 files changed, 24 insertions(+), 33 deletions(-)
>>>
> 
> 
> 
> 
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-09  1:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <17112B4EDBB29064.15579@groups.io>
2022-09-02 22:28 ` [edk2-devel] [PATCH v3 0/8] Fix imbalanced debug macros Michael Kubacki
2022-09-09  1:03 ` Michael Kubacki
2022-09-09  1:29   ` Michael D Kinney
2022-09-09  1:45     ` Michael Kubacki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox