[edk2-devel] [PATCH V3 0/8] make mExitBootServicesEvent static

Gao, Zhichao posted 8 patches 5 years ago
Failed in applying to current master (apply log)
.../SmmRuntimeDxeSupport.c                                    | 4 ++--
.../DatahubStatusCodeHandlerDxe/DatahubStatusCodeHandlerDxe.c | 4 ++--
IntelFsp2WrapperPkg/FspWrapperNotifyDxe/FspWrapperNotifyDxe.c | 4 ++--
.../FirmwarePerformanceDataTableDxe/FirmwarePerformanceDxe.c  | 4 ++--
.../RuntimeDxe/StatusCodeHandlerRuntimeDxe.c                  | 4 ++--
MdePkg/Library/UefiDebugLibConOut/DebugLibConstructor.c       | 2 +-
.../UefiDebugLibDebugPortProtocol/DebugLibConstructor.c       | 2 +-
MdePkg/Library/UefiDebugLibStdErr/DebugLibConstructor.c       | 2 +-
8 files changed, 13 insertions(+), 13 deletions(-)
[edk2-devel] [PATCH V3 0/8] make mExitBootServicesEvent static
Posted by Gao, Zhichao 5 years ago
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1740

V1:
The DebugLib instances of DebugPortProtocol, ConOut and StdErr
use a global variable "mExitBootServicesEvent" which is in
conflict with the same variable in StatusCodeHandlerRuntimeDxe.inf.
That would cause a build error through GCC5. So change the
name to the "mDebugLibExitBootServicesEvent".

V2:
Abandon v1.
Add a 'static' descriptor to the global variables that only
used in a single file to minimize the name collisions.
This is only for the variable named 'mExitBootServicesEvent'.

V3:
Update the commit message and some copyright date.

Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Hao Wu <hao.a.wu@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Dandan Bi <dandan.bi@intel.com>

Zhichao Gao (8):
  MdePkg/UefiDebugLibConOut: make global variable static
  MdePkg/UefiDebugLibDebugPortProtocol: make global variable static
  MdePkg/UefiDebugLibStdErr: make global variable static
  IntelFrameworkModulePkg: make global variable static
  MdeModulePkg/FirmwarePerformanceDxe: make global variable static
  IntelFsp2WrapperPkg/FspWrapperNotifyDxe: make global variable static
  IntelFrameworkModulePkg: make global variable static
  MdeModulePkg/StatusCodeHandlerRuntimeDxe: make global variable static

 .../SmmRuntimeDxeSupport.c                                    | 4 ++--
 .../DatahubStatusCodeHandlerDxe/DatahubStatusCodeHandlerDxe.c | 4 ++--
 IntelFsp2WrapperPkg/FspWrapperNotifyDxe/FspWrapperNotifyDxe.c | 4 ++--
 .../FirmwarePerformanceDataTableDxe/FirmwarePerformanceDxe.c  | 4 ++--
 .../RuntimeDxe/StatusCodeHandlerRuntimeDxe.c                  | 4 ++--
 MdePkg/Library/UefiDebugLibConOut/DebugLibConstructor.c       | 2 +-
 .../UefiDebugLibDebugPortProtocol/DebugLibConstructor.c       | 2 +-
 MdePkg/Library/UefiDebugLibStdErr/DebugLibConstructor.c       | 2 +-
 8 files changed, 13 insertions(+), 13 deletions(-)

-- 
2.21.0.windows.1


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#39589): https://edk2.groups.io/g/devel/message/39589
Mute This Topic: https://groups.io/mt/31348674/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-

Re: [edk2-devel] [PATCH V3 0/8] make mExitBootServicesEvent static
Posted by Laszlo Ersek 5 years ago
On 04/26/19 03:03, Zhichao Gao wrote:
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1740
> 
> V1:
> The DebugLib instances of DebugPortProtocol, ConOut and StdErr
> use a global variable "mExitBootServicesEvent" which is in
> conflict with the same variable in StatusCodeHandlerRuntimeDxe.inf.
> That would cause a build error through GCC5. So change the
> name to the "mDebugLibExitBootServicesEvent".
> 
> V2:
> Abandon v1.
> Add a 'static' descriptor to the global variables that only
> used in a single file to minimize the name collisions.
> This is only for the variable named 'mExitBootServicesEvent'.
> 
> V3:
> Update the commit message and some copyright date.
> 
> Cc: Laszlo Ersek <lersek@redhat.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Hao Wu <hao.a.wu@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Star Zeng <star.zeng@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> Cc: Dandan Bi <dandan.bi@intel.com>
> 
> Zhichao Gao (8):
>   MdePkg/UefiDebugLibConOut: make global variable static
>   MdePkg/UefiDebugLibDebugPortProtocol: make global variable static
>   MdePkg/UefiDebugLibStdErr: make global variable static
>   IntelFrameworkModulePkg: make global variable static
>   MdeModulePkg/FirmwarePerformanceDxe: make global variable static
>   IntelFsp2WrapperPkg/FspWrapperNotifyDxe: make global variable static
>   IntelFrameworkModulePkg: make global variable static
>   MdeModulePkg/StatusCodeHandlerRuntimeDxe: make global variable static
> 
>  .../SmmRuntimeDxeSupport.c                                    | 4 ++--
>  .../DatahubStatusCodeHandlerDxe/DatahubStatusCodeHandlerDxe.c | 4 ++--
>  IntelFsp2WrapperPkg/FspWrapperNotifyDxe/FspWrapperNotifyDxe.c | 4 ++--
>  .../FirmwarePerformanceDataTableDxe/FirmwarePerformanceDxe.c  | 4 ++--
>  .../RuntimeDxe/StatusCodeHandlerRuntimeDxe.c                  | 4 ++--
>  MdePkg/Library/UefiDebugLibConOut/DebugLibConstructor.c       | 2 +-
>  .../UefiDebugLibDebugPortProtocol/DebugLibConstructor.c       | 2 +-
>  MdePkg/Library/UefiDebugLibStdErr/DebugLibConstructor.c       | 2 +-
>  8 files changed, 13 insertions(+), 13 deletions(-)
> 

series
Reviewed-by: Laszlo Ersek <lersek@redhat.com>

-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#39663): https://edk2.groups.io/g/devel/message/39663
Mute This Topic: https://groups.io/mt/31348674/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-

Re: [edk2-devel] [PATCH V3 0/8] make mExitBootServicesEvent static
Posted by Liming Gao 4 years, 12 months ago
Reviewed-by: Liming Gao <liming.gao@intel.com>

>-----Original Message-----
>From: Laszlo Ersek [mailto:lersek@redhat.com]
>Sent: Saturday, April 27, 2019 3:38 AM
>To: Gao, Zhichao <zhichao.gao@intel.com>; devel@edk2.groups.io
>Cc: Wang, Jian J <jian.j.wang@intel.com>; Wu, Hao A <hao.a.wu@intel.com>;
>Ni, Ray <ray.ni@intel.com>; Zeng, Star <star.zeng@intel.com>; Kinney,
>Michael D <michael.d.kinney@intel.com>; Gao, Liming
><liming.gao@intel.com>; Bi, Dandan <dandan.bi@intel.com>
>Subject: Re: [PATCH V3 0/8] make mExitBootServicesEvent static
>
>On 04/26/19 03:03, Zhichao Gao wrote:
>> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1740
>>
>> V1:
>> The DebugLib instances of DebugPortProtocol, ConOut and StdErr
>> use a global variable "mExitBootServicesEvent" which is in
>> conflict with the same variable in StatusCodeHandlerRuntimeDxe.inf.
>> That would cause a build error through GCC5. So change the
>> name to the "mDebugLibExitBootServicesEvent".
>>
>> V2:
>> Abandon v1.
>> Add a 'static' descriptor to the global variables that only
>> used in a single file to minimize the name collisions.
>> This is only for the variable named 'mExitBootServicesEvent'.
>>
>> V3:
>> Update the commit message and some copyright date.
>>
>> Cc: Laszlo Ersek <lersek@redhat.com>
>> Cc: Jian J Wang <jian.j.wang@intel.com>
>> Cc: Hao Wu <hao.a.wu@intel.com>
>> Cc: Ray Ni <ray.ni@intel.com>
>> Cc: Star Zeng <star.zeng@intel.com>
>> Cc: Michael D Kinney <michael.d.kinney@intel.com>
>> Cc: Liming Gao <liming.gao@intel.com>
>> Cc: Dandan Bi <dandan.bi@intel.com>
>>
>> Zhichao Gao (8):
>>   MdePkg/UefiDebugLibConOut: make global variable static
>>   MdePkg/UefiDebugLibDebugPortProtocol: make global variable static
>>   MdePkg/UefiDebugLibStdErr: make global variable static
>>   IntelFrameworkModulePkg: make global variable static
>>   MdeModulePkg/FirmwarePerformanceDxe: make global variable static
>>   IntelFsp2WrapperPkg/FspWrapperNotifyDxe: make global variable static
>>   IntelFrameworkModulePkg: make global variable static
>>   MdeModulePkg/StatusCodeHandlerRuntimeDxe: make global variable
>static
>>
>>  .../SmmRuntimeDxeSupport.c                                    | 4 ++--
>>  .../DatahubStatusCodeHandlerDxe/DatahubStatusCodeHandlerDxe.c | 4
>++--
>>  IntelFsp2WrapperPkg/FspWrapperNotifyDxe/FspWrapperNotifyDxe.c | 4
>++--
>>  .../FirmwarePerformanceDataTableDxe/FirmwarePerformanceDxe.c  | 4
>++--
>>  .../RuntimeDxe/StatusCodeHandlerRuntimeDxe.c                  | 4 ++--
>>  MdePkg/Library/UefiDebugLibConOut/DebugLibConstructor.c       | 2 +-
>>  .../UefiDebugLibDebugPortProtocol/DebugLibConstructor.c       | 2 +-
>>  MdePkg/Library/UefiDebugLibStdErr/DebugLibConstructor.c       | 2 +-
>>  8 files changed, 13 insertions(+), 13 deletions(-)
>>
>
>series
>Reviewed-by: Laszlo Ersek <lersek@redhat.com>

-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#39704): https://edk2.groups.io/g/devel/message/39704
Mute This Topic: https://groups.io/mt/31348674/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-