[edk2] [PATCH 3/3] OvmfPkg/QemuVideoDxe: Frame buffer config size may change in new mode

2017-01-22 Thread Ruiyu Ni
https://bugzilla.tianocore.org/show_bug.cgi?id=339 The patch removes the assumption in QemuVideoDxe driver that it wrongly assumes the frame buffer configure size is the same in different video modes. The assumption is true in old FrameBufferBltLib but is false in new implementation.

[edk2] [PATCH 0/3] MdeModulePkg/FrameBufferBltLib: Use dynamic allocated line buffer

2017-01-22 Thread Ruiyu Ni
The patches optimized the FrameBufferBltLib to use less memory than old implementation. QemuVideoDxe driver needs to be updated to avoid hang due to wrong assumption. Ruiyu Ni (3): MdeModulePkg/FrameBufferBltLib: Refine ConfigurePixelBitMaskFormat MdeModulePkg/FrameBufferBltLib: Use dynamic

[edk2] [PATCH 1/3] MdeModulePkg/FrameBufferBltLib: Refine ConfigurePixelBitMaskFormat

2017-01-22 Thread Ruiyu Ni
https://bugzilla.tianocore.org/show_bug.cgi?id=339 The patch refines ConfigurePixelBitMaskFormat() to prepare the enhancement in next commit: Enhance this library to use dynamic allocated line buffer to reduce memory usage of frame buffer configure. Contributed-under: TianoCore Contribution

[edk2] [PATCH 2/3] MdeModulePkg/FrameBufferBltLib: Use dynamic allocated line buffer

2017-01-22 Thread Ruiyu Ni
https://bugzilla.tianocore.org/show_bug.cgi?id=339 The patch uses dynamic allocated line buffer to reduce memory usage of frame buffer configure. (Original implementation uses 0x4000 bytes for line buffer.) Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni

Re: [edk2] [PATCH v3 0/3] Enable the HTTP connections switch

2017-01-22 Thread Wu, Jiaxin
> Subject: [PATCH v3 0/3] Enable the HTTP connections switch > > v3: > * Append patch for OVMF. > > Cc: Laszlo Ersek > Cc: Justen Jordan L > Cc: Gary Lin > Cc: Ye Ting > Cc: Fu Siyuan > Cc:

Re: [edk2] [PATCH] NetworkPkg: Remove superfluous return statement.

2017-01-22 Thread Wu, Jiaxin
Commit: https://github.com/tianocore/edk2/commit/f3fa35a00233b6f2e7653b3b8c3e2b28b8ecbe7f Thanks, Jiaxin > -Original Message- > From: Wu, Jiaxin > Sent: Friday, January 20, 2017 8:39 AM > To: Thomas Huth ; edk2-de...@ml01.01.org > Cc: Fu, Siyuan >

Re: [edk2] [Patch] BaseTools: Extend the Macro used in the FDF !include statement

2017-01-22 Thread Gao, Liming
Reviewed-by: Liming Gao >-Original Message- >From: Zhu, Yonghong >Sent: Sunday, January 22, 2017 11:28 AM >To: edk2-devel@lists.01.org >Cc: Gao, Liming >Subject: [Patch] BaseTools: Extend the Macro used in the FDF !include >statement >

Re: [edk2] [PATCH v3 0/3] Enable the HTTP connections switch

2017-01-22 Thread Fu, Siyuan
Reviewed-by: Fu Siyuan -Original Message- From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of Jiaxin Wu Sent: 2017年1月19日 13:18 To: edk2-devel@lists.01.org Cc: Ye, Ting ; Justen, Jordan L ; Wu, Jiaxin

Re: [edk2] [PATCH v3 0/3] Enable the HTTP connections switch

2017-01-22 Thread Ye, Ting
Series Reviewed-by: Ye Ting -Original Message- From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of Jiaxin Wu Sent: Thursday, January 19, 2017 1:18 PM To: edk2-devel@lists.01.org Cc: Ye, Ting ; Justen, Jordan L

Re: [edk2] [Patch] BaseTools: Convert incomplete expression with dangling while()

2017-01-22 Thread Gao, Liming
Reviewed-by: Liming Gao >-Original Message- >From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of >Yonghong Zhu >Sent: Sunday, January 22, 2017 11:39 AM >To: edk2-devel@lists.01.org >Cc: Nikolai SAOUKH >Subject: [edk2] [Patch]

Re: [edk2] [PATCH 3/3] ShellPkg SmbiosView: Add decoding of SMBIOS spec 3.1.1

2017-01-22 Thread Ni, Ruiyu
Reviewed-by: Ruiyu Ni Thanks/Ray > -Original Message- > From: Zeng, Star > Sent: Sunday, January 22, 2017 5:25 PM > To: Ni, Ruiyu ; edk2-devel@lists.01.org > Cc: Carsey, Jaben ; Zeng, Star > > Subject:

Re: [edk2] [PATCH 3/3] ShellPkg SmbiosView: Add decoding of SMBIOS spec 3.1.1

2017-01-22 Thread Zeng, Star
Ray & Jaben, I am not so sure about the rule. The mixed using of strings in c code and strings in uni file has been there since it was created. Thanks, Star -Original Message- From: Ni, Ruiyu Sent: Sunday, January 22, 2017 4:56 PM To: Zeng, Star ;

Re: [edk2] [PATCH 3/3] ShellPkg SmbiosView: Add decoding of SMBIOS spec 3.1.1

2017-01-22 Thread Ni, Ruiyu
Star, Why some strings are hardcoded in C file while some are defined in UNI file? What's the rule? Thanks/Ray > -Original Message- > From: Zeng, Star > Sent: Sunday, January 22, 2017 4:18 PM > To: edk2-devel@lists.01.org > Cc: Zeng, Star ; Ni, Ruiyu

[edk2] [PATCH 1/3] MdePkg: Add definitions for SMBIOS spec 3.1.1

2017-01-22 Thread Star Zeng
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=349 This patch is to add definitions for below items. Processor Information (Type 4): - add socket SP3r2 - add AMD Zen Processor Family Management Controller Host Interface (Type 42): - include Host Interface Type and Protocol Identifier

[edk2] [PATCH 0/3] Add SMBIOS spec 3.1.1 support

2017-01-22 Thread Star Zeng
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=349 These patches are to add support for below items. Processor Information (Type 4): - add socket SP3r2 - add AMD Zen Processor Family Management Controller Host Interface (Type 42): - include Host Interface Type and Protocol Identifier

[edk2] [PATCH 2/3] MdeModulePkg: Update PcdSmbiosDocRev to 0x1 for SMBIOS spec 3.1.1

2017-01-22 Thread Star Zeng
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=349 Cc: Feng Tian Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng --- MdeModulePkg/MdeModulePkg.dec | 2 +- 1 file changed, 1

[edk2] [PATCH 3/3] ShellPkg SmbiosView: Add decoding of SMBIOS spec 3.1.1

2017-01-22 Thread Star Zeng
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=349 Cc: Ruiyu Ni Cc: Jaben Carsey Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng --- .../SmbiosView/PrintInfo.c | 6