[edk2-devel] [PATCH] Maintainers.txt: Update Maintainers and reviewers for UefiPayloadPkg

2021-01-24 Thread Guo Dong
Add Philipp Deppenwiese as Maintainer. Update Maurice Ma and Benjamin You as reviewers to continue support UefiPayloadPkg patch review. Cc: Philipp Deppenwiese Cc: Benjamin You Cc: Maurice Ma Cc: Michael D Kinney Signed-off-by: Guo Dong --- Maintainers.txt | 6 -- 1 file changed, 4 inser

Re: [edk2-devel] [PATCH] UefiPayloadPkg/BlSupportDxe: Use EfiSmbiosProtocol to install tables

2021-01-24 Thread Guo Dong
How about update SmbiosDxe to detect if SMBIOS table is installed in Configuration Table in its entry point? If it is not installed, no change to current behavior (install SmbiosProtocol on an empty SMBIOS table). If it is installed, install SmbiosProtocol with the SMBIOS table from Configurati

回复: [edk2-devel] [PATCH v1 1/1] MdePkg/SmiHandlerProfileLibNull: Add MM_STANDALONE support

2021-01-24 Thread gaoliming
Reviewed-by: Liming Gao > -邮件原件- > 发件人: bounce+27952+70694+4905953+8761...@groups.io > 代表 > mikub...@linux.microsoft.com > 发送时间: 2021年1月23日 5:12 > 收件人: devel@edk2.groups.io > 抄送: Eric Dong ; Hao A Wu ; > Jian J Wang ; Ray Ni > 主题: [edk2-devel] [PATCH v1 1/1] MdePkg/SmiHandlerProfileLibN

[edk2-devel] [PATCH v3 1/1] MdePkg/Cpuid.h: Change and add some macro definitions.

2021-01-24 Thread Jason Lou
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3105 Change and add some macro definitions about CPUID_HYBRID_INFORMATION Leaf(1Ah). Signed-off-by: Jason Lou Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Cc: Ray Ni Cc: Eric Dong Cc: Laszlo Ersek Cc: Rahul Kumar --- UefiCpuPkg/

[edk2-devel] 回复: [PATCH v1 0/2] Enable EKDII core CI support for Kvmtool

2021-01-24 Thread gaoliming
Acked-by: Liming Gao > -邮件原件- > 发件人: Sami Mujawar > 发送时间: 2021年1月23日 1:20 > 收件人: devel@edk2.groups.io > 抄送: Sami Mujawar ; ardb+tianoc...@kernel.org; > l...@nuviainc.com; sean.bro...@microsoft.com; > bret.barke...@microsoft.com; michael.d.kin...@intel.com; > gaolim...@byosoft.com.cn; ler

Re: [edk2-devel] 回复: [edk2-devel] 回复: [edk2-devel] [PATCH v2 1/1] MdePkg/Cpuid.h: Change and add some macro definitions.

2021-01-24 Thread Jason Lou
Got it. I have sent out v3 code patch, please help to review it when you are available, thanks. Jason Lou -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#70711): https://edk2.groups.io/g/devel/message/70711 Mute This Topic: https://group

回复: [edk2-devel] [PATCH v3 1/1] MdePkg/Cpuid.h: Change and add some macro definitions.

2021-01-24 Thread gaoliming
Reviewed-by: Liming Gao > -邮件原件- > 发件人: bounce+27952+70709+4905953+8761...@groups.io > 代表 Jason Lou > 发送时间: 2021年1月25日 9:21 > 收件人: devel@edk2.groups.io > 抄送: Jason ; Michael D Kinney > ; Liming Gao ; > Zhiguang Liu ; Ray Ni ; Eric Dong > ; Laszlo Ersek ; Rahul Kumar > > 主题: [edk2-devel]

Re: [edk2-devel] [Patch 1/1] UefiCpuPkg/Library/MpInitLib: Fix AP VolatileRegisters race condition

2021-01-24 Thread Zeng, Star
Does https://github.com/tianocore/edk2/blob/master/UefiCpuPkg/Library/MpInitLib/MpLib.c#L909 (also decrements NumApsExecuting) also need be handled? Thanks, Star > -Original Message- > From: devel@edk2.groups.io On Behalf Of Michael > D Kinney > Sent: Saturday, January 23, 2021 1:10 AM

Re: [edk2-devel] [Patch 1/1] UefiCpuPkg/Library/MpInitLib: Fix AP VolatileRegisters race condition

2021-01-24 Thread Michael D Kinney
Hi Star, That line is only active when (CpuMpData->SevEsIsEnabled) is TRUE. The race condition addressed by this BZ is for systems with SecEsIsEnabled FALSE. From comments in this file the SecEsIsEnabled cases have already been handled. Mike > -Original Message- > From: Zeng, Star >

[edk2-devel] [PATCH] RedfishPkg/JsonLib: Fix build errors

2021-01-24 Thread Abner Chang
This patch fixes the build errors when build JsonLib with EDK2 Redfish feature driver. - Add JsonLoadString function to load a NULL terminated-string JSON - json_string_value() in JsonValueGetAsciiString () is removed by accident. Signed-off-by: Abner Chang Cc: Leif Lindholm Cc: Nickle Wang C

[edk2-devel] [PATCH] RedfishPkg/RedfishCrtLib: Add more CRT functions

2021-01-24 Thread Abner Chang
Add more functions which were missed in the first time commit, that causes the build error with EDK2 Redfish feature driver. strerror - We don't support this on edk2 environment. strpbrk - Cloned this function from edk2-LibC File operation functions - Not supported on edk2 environment. Signed-of