Re: [edk2-devel] [edk2-platforms: PATCH v2 2/2] RaspberryPi/RPi3: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-06-09 Thread Liming Gao
Pete: The change is good. Reviewed-by: Liming Gao In fact, I send this patch before. https://edk2.groups.io/g/devel/message/41480?p=,,,20,0,0,0::Created,,Network,20,2,0,31819937 But, I don't get the response. Then, I think this platform is out of maintain. Thanks Liming >-Original

Re: [edk2-devel] [PATCH v2 1/1] ShellPkg: acpiview: ACPI 6.3 update for MADT parser

2019-06-09 Thread Gao, Zhichao
Sorry for late update. > -Original Message- > From: Krzysztof Koch [mailto:krzysztof.k...@arm.com] > Sent: Friday, June 7, 2019 4:48 PM > To: devel@edk2.groups.io > Cc: sami.muja...@arm.com; Carsey, Jaben ; Ni, > Ray ; Gao, Zhichao ; > matteo.carl...@arm.com; stephanie.hughes-f...@arm.com;

Re: [edk2-devel] [PATCH v4 2/2] MdeMoudlePkg/CapsulePei: Substantial change on UefiCapsule.c

2019-06-09 Thread Gao, Zhichao
> -Original Message- > From: Leif Lindholm [mailto:leif.lindh...@linaro.org] > Sent: Thursday, June 6, 2019 7:18 PM > To: Gao, Zhichao > Cc: devel@edk2.groups.io; Wang, Jian J ; Wu, Hao A > ; Ni, Ray ; Zeng, Star > ; Gao, Liming ; Sean Brogan > ; Michael Turner > ; Bret Barkelew > > Su

Re: [edk2-devel] [PATCH v2 1/2] UefiCpuPkg/MpInitLib: increase NumApsExecuting only for ApInitConfig

2019-06-09 Thread Dong, Eric
Reviewed-by: Eric Dong > -Original Message- > From: Ni, Ray > Sent: Wednesday, June 5, 2019 1:49 PM > To: devel@edk2.groups.io > Cc: Laszlo Ersek ; Dong, Eric > Subject: [PATCH v2 1/2] UefiCpuPkg/MpInitLib: increase NumApsExecuting > only for ApInitConfig > > NumApsExecuting is only use

Re: [edk2-devel] [PATCH v2 2/2] UefiCpuPkg/MpInitLib: Decrease NumApsExecuting only for ApInitConfig

2019-06-09 Thread Dong, Eric
Reviewed-by: Eric Dong > -Original Message- > From: Ni, Ray > Sent: Wednesday, June 5, 2019 1:49 PM > To: devel@edk2.groups.io > Cc: Dong, Eric ; Sathyanarayanan, Nandagopal > > Subject: [PATCH v2 2/2] UefiCpuPkg/MpInitLib: Decrease NumApsExecuting > only for ApInitConfig > > The patch

Re: [edk2-devel] [PATCH v1 1/1] ShellPkg/acpiview: GTDT updates for ACPI 6.3

2019-06-09 Thread Gao, Zhichao
Reviewed-by: Zhichao Gao I would collect the R-B and send to the maintainer to push. Thanks, Zhichao > -Original Message- > From: PierreGondois [mailto:pierre.gond...@arm.com] > Sent: Thursday, June 6, 2019 8:29 PM > To: devel@edk2.groups.io > Cc: Carsey, Jaben ; Ni, Ray ; > Gao, Zhicha

Re: [edk2-devel] [edk2-platforms][PATCH v2 00/18] Drop IntelFramework[Module]Pkg dependency

2019-06-09 Thread Wu, Hao A
Hello Ard and Leif, I saw Ming Huang validated the patch (OS boot): Hisilicon/D0x: Use StatusCode Router & Handler in MdeModulePkg https://edk2.groups.io/g/devel/message/41419 (Thanks a lot for the validation effort.) Do you have remaining concerns for review this series? Thanks in advance. Be

[edk2-devel] [PATCH v5 2/5] MdeMoudlePkg/CapsulePei: Fix coding style issue

2019-06-09 Thread Gao, Zhichao
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1853 Remove API specifier AreCapsulesStaged and GetScatterGatherHeadEntries because they are internal used. Add space between function name and bracket. Cc: Jian J Wang Cc: Hao A Wu Cc: Ray Ni Cc: Star Zeng Cc: Liming Gao Cc: Sean Brogan C

[edk2-devel] [PATCH v5 4/5] MdeMoudlePkg/CapsulePei: Optimize GetScatterGatherHeadEntries

2019-06-09 Thread Gao, Zhichao
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1853 Rename the MACRO from MAX_SG_LIST_HEADS to DEFAULT_SG_LIST_HEADS. GetScatterGatherHeadEntries: use allocated buffer instead of fixed array to handle the condition which the SG list is larger then the array size. Cc: Jian J Wang Cc: Hao A W

[edk2-devel] [PATCH v5 0/5] MdeModulePkg/CapsulePei: Optimize the CapsulePei

2019-06-09 Thread Gao, Zhichao
v1: Sperate the capsule check function from GetCapsuleDescriptors and name it to AreCapsulesStaged. Rename GetCapsuleDescriptors to GetScatterGatherHeadEntries. And optimize its to remove the duplicated code. V2: Clarify the changes of the patch and descript in the commit message. V3: Add the cod

[edk2-devel] [PATCH v5 1/5] MdeModulePkg/CapsulePei: Optimize the CapsulePei

2019-06-09 Thread Gao, Zhichao
From: Bret Barkelew REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1853 Code change form Mu project: https://github.com/microsoft/mu_basecore/blob/release/201903/ MdeModulePkg/Universal/CapsulePei/UefiCapsule.c#L801 Separate the capsule check function from GetCapsuleDescriptors to AreCapsu

[edk2-devel] [PATCH v5 5/5] MdeMoudlePkg/CapsulePei: No need to remain space for null-terminate

2019-06-09 Thread Gao, Zhichao
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1853 UnicodeValueToStringS would remain two bytes for the first parameter to set the null- terminate. So remove this change in Mu. Cc: Jian J Wang Cc: Hao A Wu Cc: Ray Ni Cc: Star Zeng Cc: Liming Gao Cc: Sean Brogan Cc: Michael Turner Cc:

[edk2-devel] [PATCH v5 3/5] MdeMoudlePkg/CapsulePei: Optimize AreCapsulesStaged

2019-06-09 Thread Gao, Zhichao
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1853 AreCapsulesStaged do not need to return the status, only boolean result is useful. So directly return a boolean value. Cannot initialize the variable at its definition. Cc: Jian J Wang Cc: Hao A Wu Cc: Ray Ni Cc: Star Zeng Cc: Liming Ga

Re: [edk2-devel] [Patch V2] EmulatorPkg: don't diaplay the cpu current speed

2019-06-09 Thread Wu, Hao A
> -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Zeng, Star > Sent: Wednesday, June 05, 2019 10:31 PM > To: devel@edk2.groups.io; ler...@redhat.com; Ni, Ray; Gao, Liming; > ard.biesheu...@linaro.org; Leif Lindholm; Kinney, Michael D; Liu, Zhigua

Re: [edk2-devel] [Patch V2] EmulatorPkg: don't diaplay the cpu current speed

2019-06-09 Thread Yao, Jiewen
Good list. What does "memory" mean ? MemoryTest ? How about put "LockBox" into "S3"? How about list "EBC" as standalone component? > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Wu, Hao A > Sent: Monday, June 10, 2019 2:02 PM > To: devel@

Re: [edk2-devel] [PATCH] SecurityPkg/OpalPassword: Add PCD to skip password prompt

2019-06-09 Thread Dong, Eric
Hi Maggie, Reviewed-by: Eric Dong And pushed: 6cbed0e36fe734f3fc11d30d652122d7714627c4 Thanks, Eric > -Original Message- > From: Chu, Maggie > Sent: Wednesday, May 22, 2019 3:05 PM > To: devel@edk2.groups.io > Cc: Dong, Eric ; Zhang, Chao B > ; Yao, Jiewen > Subject: [PATCH] SecurityP

Re: [edk2-devel] [Patch V2] EmulatorPkg: don't diaplay the cpu current speed

2019-06-09 Thread Wu, Hao A
> -Original Message- > From: Yao, Jiewen > Sent: Monday, June 10, 2019 2:13 PM > To: devel@edk2.groups.io; Wu, Hao A; Zeng, Star; ler...@redhat.com; Ni, > Ray; Gao, Liming; ard.biesheu...@linaro.org; Leif Lindholm; Kinney, Michael > D; Liu, Zhiguang; Justen, Jordan L; Andrew Fish > Subject:

[edk2-devel] [PATCH 1/1] OvmfPkg/README: Update the network build flags

2019-06-09 Thread Gary Lin
The following network build flags changed due to the inclusion of NetworkPkg/Network.fdf.inc. HTTP_BOOT_ENABLE -> NETWORK_HTTP_BOOT_ENABLE TLS_ENABLE -> NETWORK_TLS_ENABLE This commit also adds NETWORK_ALLOW_HTTP_CONNECTIONS to reflect the change in OvmfPkg/OvmfPkg*.dsc. Cc: Jordan Justen C