[edk2-devel] [edk2-redfish-client][PATCH v2 04/11] RedfishClientPkg: RedfishFeatureUtilityLib: fix memory leaks

2023-10-26 Thread Mike Maslenkin
Signed-off-by: Mike Maslenkin --- .../RedfishFeatureUtilityLib.c| 30 +++ 1 file changed, 30 insertions(+) diff --git a/RedfishClientPkg/Library/RedfishFeatureUtilityLib/RedfishFeatureUtilityLib.c

[edk2-devel] [edk2-redfish-client][PATCH v2 02/11] RedfishClientPkg: fix DEBUG macro arguments

2023-10-26 Thread Mike Maslenkin
Signed-off-by: Mike Maslenkin --- .../RedfishFeatureUtilityLib.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/RedfishClientPkg/Library/RedfishFeatureUtilityLib/RedfishFeatureUtilityLib.c

[edk2-devel] [edk2-redfish-client][PATCH v2 03/11] RedfishLib: remove redudant zeroing

2023-10-26 Thread Mike Maslenkin
Memory allocated by calloc() is filled with bytes of value zero. Signed-off-by: Mike Maslenkin --- .../PrivateLibrary/RedfishLib/edk2libredfish/src/service.c | 1 - 1 file changed, 1 deletion(-) diff --git a/RedfishClientPkg/PrivateLibrary/RedfishLib/edk2libredfish/src/service.c

[edk2-devel] [edk2-redfish-client][PATCH v2 0/11] RedfishClientPkg: various minor fixes

2023-10-26 Thread Mike Maslenkin
This patchset contains fixes of wrong format and number of arguments passed to DEBUG macro. Also a number of memory leaks were fixed. Here is a link to PR: https://github.com/tianocore/edk2-redfish-client/pull/52 Cc: Abner Chang Cc: Nickle Wang Cc: Igor Kulchytskyy Signed-off-by: Mike

[edk2-devel] [edk2-redfish-client][PATCH v2 01/11] RedfishClientPkg: fix format used for output __func__

2023-10-26 Thread Mike Maslenkin
Signed-off-by: Mike Maslenkin --- RedfishClientPkg/Features/Bios/v1_0_9/Common/BiosCommon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RedfishClientPkg/Features/Bios/v1_0_9/Common/BiosCommon.c b/RedfishClientPkg/Features/Bios/v1_0_9/Common/BiosCommon.c index

Re: [edk2-devel] [edk2-platforms PATCH v1 1/4] Silicon/Marvell: Retructure package

2023-10-26 Thread Leif Lindholm
On Thu, Oct 26, 2023 at 16:35:52 +0100, Leif Lindholm wrote: > On Wed, Oct 11, 2023 at 10:53:20 -0700, ndhil...@marvell.com wrote: > > From: Narinder Dhillon > > > > Current Marvell package structure makes it difficult to add new silicon > > packages that reuse common elements without creating

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: realpath function signature doesn't match the standard

2023-10-26 Thread Laszlo Ersek
On 10/26/23 16:17, Jayaprakash, N wrote: > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4574 > > This commit is for processing the below PR on edk2-libc repo > https://github.com/tianocore/edk2-libc/pull/10 > The realpath function signature in stdlib of edk2-libc doesn't match > signature

Re: [edk2-devel] [edk2-platforms PATCH v1 1/4] Silicon/Marvell: Retructure package

2023-10-26 Thread Leif Lindholm
On Wed, Oct 11, 2023 at 10:53:20 -0700, ndhil...@marvell.com wrote: > From: Narinder Dhillon > > Current Marvell package structure makes it difficult to add new silicon > packages that reuse common elements without creating nested DEC files. > > This patch creates a new MarvellSiliconPkg folder

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: realpath function signature doesn't match the standard

2023-10-26 Thread Jayaprakash, N
Reviewed-by: Jayaprakash Nevara It's simple fix to align the function signature as per the standards. Regards, JP -Original Message- From: Jayaprakash, N Sent: Thursday, October 26, 2023 7:47 PM To: devel@edk2.groups.io Cc: Jayaprakash, N ; Rebecca Cran ; Kinney, Michael D ; Kloper,

[edk2-devel] [edk2-libc Patch 0/1] fix missing nanf definition in StdLib

2023-10-26 Thread Jayaprakash, N
This patch fixes the issue of missing definition of nanf in StdLib. This has been extracted from the below PR submitted on edk2-libc. https://github.com/tianocore/edk2-libc/pull/9 Jayaprakash N (1): ek2-libc: fix missing nanf definition in StdLib StdLib/LibC/LibC.inf| 1 +

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: fix missing nanf definition in StdLib

2023-10-26 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4576 File StdLib/Include/math.h:406 defines NAN constant as __nanf.__val. The problem is that __nanf is never defined. Fix is simple: define __nanf in similar way as __infinityf This fix has been provided through the below PR on edk2-libc repo

Re: [edk2-devel] [edk2-platforms PATCH v1 1/4] Silicon/Marvell: Retructure package

2023-10-26 Thread Leif Lindholm
Hi Nharinder, Apologies for delay in responding - this was sent out during UEFI plugfest, and then I brought home a cold from there. On Wed, Oct 11, 2023 at 10:53:20 -0700, ndhil...@marvell.com wrote: > From: Narinder Dhillon > > Current Marvell package structure makes it difficult to add new

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: realpath function signature doesn't match the standard

2023-10-26 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4574 This commit is for processing the below PR on edk2-libc repo https://github.com/tianocore/edk2-libc/pull/10 The realpath function signature in stdlib of edk2-libc doesn't match signature as per the standard definition of this function given

[edk2-devel] [edk2-libc Patch 0/1] realpath function signature doesn't match standard

2023-10-26 Thread Jayaprakash, N
This patch fixes the function signature of realpath to match with the standard defined signature. This patch bas been extracted from the below pull request raised on edk2-libc. https://github.com/tianocore/edk2-libc/pull/10 Jayaprakash N (1): ek2-libc: realpath function signature doesn't

Re: [edk2-devel] [edk2-platforms PATCH] Maintainers.txt: remove Isaac Oram's email address

2023-10-26 Thread Laszlo Ersek
2.groups.io; ler...@redhat.com >> Cc: Attar, AbdulLateef (Abdul Lateef) ; Chang, >> Abner ; Ashraf Ali S ; >> Chasel Chiu ; Eric Dong ; >> Liming Gao ; Nate DeSimone >> ; Nickle Wang ; >> Rangasai V Chaganty ; Ray Ni >> ; Theo Jehl >> Subject: R

Re: [edk2-devel] [edk2-platforms][PATCH] ManageabilityPkg: Uncrustify on C source files

2023-10-26 Thread Laszlo Ersek
On 10/26/23 10:06, Chang, Abner via groups.io wrote: > From: Abner Chang > > Run Uncrustify on the C source files those were > modified in commit ID from 3f4c4384 to 28ff8f29. > > Signed-off-by: Abner Chang > Cc: Abdul Lateef Attar > Cc: Nickle Wang > Cc: Konstantin Aladyshev > --- >

[edk2-devel] [edk2-redfish-client][PATCH v2] RedfishClientPkg/RedfishLib: align with edk2 RedfishLib

2023-10-26 Thread Nickle Wang via groups.io
Update RedfishLib to align with RedfishLib in edk2 repository. RedfishLib commits on edk2: cf68ff61 RedfishPkg/RedfishLib: introduce new interfaces. 1cbdd6e9 RedfishPkg/libredfish: introduce new interfaces. 8765f3eb RedfishPkg/RedfishLib: return HTTP headers to caller. Signed-off-by: Nickle Wang

[edk2-devel] [edk2-redfish-client][PATCH] RedfishClientPkg/RedfishLib: align with edk2 RedfishLib

2023-10-26 Thread Nickle Wang via groups.io
Update RedfishLib to align with RedfishLib in edk2 repository. RedfishLib commits on edk2: cf68ff61 RedfishPkg/RedfishLib: introduce new interfaces. 1cbdd6e9 RedfishPkg/libredfish: introduce new interfaces. 8765f3eb RedfishPkg/RedfishLib: return HTTP headers to caller. Signed-off-by: Nickle Wang

[edk2-devel] [edk2-platforms][PATCH] ManageabilityPkg: Uncrustify on C source files

2023-10-26 Thread Chang, Abner via groups.io
From: Abner Chang Run Uncrustify on the C source files those were modified in commit ID from 3f4c4384 to 28ff8f29. Signed-off-by: Abner Chang Cc: Abdul Lateef Attar Cc: Nickle Wang Cc: Konstantin Aladyshev --- .../Include/Library/BasePldmProtocolLib.h | 6 ++---

Re: [edk2-devel] [edk2-platforms PATCH] Maintainers.txt: remove Isaac Oram's email address

2023-10-25 Thread Chang, Abner via groups.io
Chang, > Abner ; Ashraf Ali S ; > Chasel Chiu ; Eric Dong ; > Liming Gao ; Nate DeSimone > ; Nickle Wang ; > Rangasai V Chaganty ; Ray Ni > ; Theo Jehl > Subject: Re: [edk2-devel] [edk2-platforms PATCH] Maintainers.txt: remove > Isaac Oram's email address > > Caut

Re: [edk2-devel] [edk2-platforms PATCH] Maintainers.txt: remove Isaac Oram's email address

2023-10-25 Thread Pedro Falcato
On Wed, Oct 25, 2023 at 9:35 AM Laszlo Ersek wrote: > > Email to Isaac's address bounces ("5.1.0 Address > rejected"); remove that address. FWIW, there's a patch in the ML list (by Nate IIRC?) that never got merged that addresses this very issue, with proposed replacements. -- Pedro

Re: [edk2-devel] [edk2-platforms PATCH] Maintainers.txt: remove Isaac Oram's email address

2023-10-25 Thread Chaganty, Rangasai V
Reviewed-by: Sai Chaganty -Original Message- From: Laszlo Ersek Sent: Wednesday, October 25, 2023 1:36 AM To: edk2-devel-groups-io Cc: Abdul Lateef Attar ; Abner Chang ; S, Ashraf Ali ; Chiu, Chasel ; Dong, Eric ; Gao, Liming ; Desimone, Nathaniel L ; Nickle Wang ; Pedro Falcato

Re: [edk2-devel] [edk2-platforms PATCH] Maintainers.txt: remove Isaac Oram's email address

2023-10-25 Thread Michael D Kinney
ng, Eric ; Gao, > Liming ; Desimone, Nathaniel L > ; Nickle Wang ; > Pedro Falcato ; Chaganty, Rangasai V > ; Ni, Ray ; Theo Jehl > > Subject: [edk2-devel] [edk2-platforms PATCH] Maintainers.txt: remove > Isaac Oram's email address > > Email to Isaac's address bounces

[edk2-devel] [edk2-platforms V2] MinPlatformPkg:Remove memory cache setting for memory under 1MB

2023-10-25 Thread Yuanhao Xie
With the fact that CSM is not supported, the request is to remove the cache setting for memory under 1MB. This can be treated as the missing part of legacy CSM deprecation. This patch only set the 0 to 9 and C to F as Write Back. A-B range is still uncacheable for VGA.

Re: [edk2-devel] [edk2-platforms PATCH] Maintainers.txt: remove Isaac Oram's email address

2023-10-25 Thread Ashraf Ali S
Reviewed-by: Ashraf Ali S Thanks., S, Ashraf Ali -Original Message- From: Laszlo Ersek Sent: Wednesday, October 25, 2023 2:06 PM To: edk2-devel-groups-io Cc: Abdul Lateef Attar ; Abner Chang ; S, Ashraf Ali ; Chiu, Chasel ; Dong, Eric ; Gao, Liming ; Desimone, Nathaniel L ;

[edk2-devel] [edk2-platforms PATCH] Maintainers.txt: remove Isaac Oram's email address

2023-10-25 Thread Laszlo Ersek
Email to Isaac's address bounces ("5.1.0 Address rejected"); remove that address. Cc: Abdul Lateef Attar Cc: Abner Chang Cc: Ashraf Ali S Cc: Chasel Chiu Cc: Eric Dong Cc: Liming Gao Cc: Nate DeSimone Cc: Nickle Wang Cc: Pedro Falcato Cc: Rangasai V Chaganty Cc: Ray Ni Cc: Sai

Re: [edk2-devel] [edk2-platforms PATCH 0/7] drop needless init steps in RealTimeClockLib instances

2023-10-24 Thread Laszlo Ersek
On 10/20/23 14:18, Laszlo Ersek wrote: > https://bugzilla.tianocore.org/show_bug.cgi?id=4565 > > RealTimeClockLib instances should neither set gRT fields nor install > EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL in LibRtcInitialize(); > EmbeddedPkg/RealTimeClockRuntimeDxe already performs those actions. >

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting Aarch64 and ARM

2023-10-23 Thread Leif Lindholm
On the whole, I find edk2-libc creates more problems than it solves. So I will not be reviewing patches for it. / Leif On 2023-10-20 20:54, Michael D Kinney wrote: +Ard +Leif -Original Message- From: Jayaprakash, N Sent: Friday, October 20, 2023 7:04 AM To:

Re: [edk2-devel] [edk2-platforms PATCH 2/7] LoongArchQemuPkg/LsRealTimeClockLib: remove superfluous instance init steps

2023-10-23 Thread Chao Li
Hi Laszlo, This change is look good to me and I will take this change into edk2/OvmfPkg/LoongArchVirt/ which I'm porting. Thanks. Reviewed-by: Chao Li Thanks, Chao 在 2023/10/20 20:18, Laszlo Ersek 写道: RealTimeClockLib instances are consumed by edk2's EmbeddedPkg/RealTimeClockRuntimeDxe

Re: [edk2-devel] edk2-libc Python Build issue

2023-10-22 Thread Jayaprakash, N
You can build edk2-libc Python 3.6.8 using GCC tool chain by following the BKMs documented in this file https://github.com/tianocore/edk2-libc/blob/master/AppPkg/Applications/Python/Python-3.6.8/GCCCompilationBKMs.rst -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting Aarch64 and ARM

2023-10-22 Thread Jayaprakash, N
; Jayaprakash, N Cc: Rebecca Cran ; Kinney, Michael D ; Tyler Erickson ; Ard Biesheuvel ; Leif Lindholm Subject: Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting Aarch64 and ARM On Fri, Oct 20, 2023 at 3:04 PM Jayaprakash, N wrote: > > REF:

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting Aarch64 and ARM

2023-10-20 Thread Pedro Falcato
On Fri, Oct 20, 2023 at 3:04 PM Jayaprakash, N wrote: > > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4570 > > This commit is for processing the below PR on edk2-libc repo > https://github.com/tianocore/edk2-libc/pull/3 > These are the changes introduced to StdLib to build > an

Re: [edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting Aarch64 and ARM

2023-10-20 Thread Michael D Kinney
+Ard +Leif > -Original Message- > From: Jayaprakash, N > Sent: Friday, October 20, 2023 7:04 AM > To: devel@edk2.groups.io > Cc: Jayaprakash, N ; Rebecca Cran > ; Kinney, Michael D ; > Tyler Erickson > Subject: [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting > Aarch64 and

[edk2-devel] [edk2-libc Patch 1/1] ek2-libc: Enhance StdLib for supporting Aarch64 and ARM

2023-10-20 Thread Jayaprakash, N
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4570 This commit is for processing the below PR on edk2-libc repo https://github.com/tianocore/edk2-libc/pull/3 These are the changes introduced to StdLib to build an application for the UEFI shell. Added format macros for int types to Aarch64,

[edk2-devel] [edk2-libc Patch 0/1] edk2-libc - Enhancements to StdLibc

2023-10-20 Thread Jayaprakash, N
This patch request contains enhancements made to StdLibc through BZ https://bugzilla.tianocore.org/show_bug.cgi?id=4570 Jayaprakash N (1): ek2-libc: Enhance StdLib for supporting Aarch64 and ARM StdLib/Include/Aarch64/machine/int_fmtio.h | 211 +

Re: [edk2-devel] [edk2-platforms PATCH 0/7] drop needless init steps in RealTimeClockLib instances

2023-10-20 Thread Ard Biesheuvel
On Fri, 20 Oct 2023 at 14:19, Laszlo Ersek wrote: > > https://bugzilla.tianocore.org/show_bug.cgi?id=4565 > > RealTimeClockLib instances should neither set gRT fields nor install > EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL in LibRtcInitialize(); > EmbeddedPkg/RealTimeClockRuntimeDxe already performs

[edk2-devel] [edk2-platforms PATCH 6/7] FT2000-4Pkg/RealTimeClockLib: remove superfluous instance init steps

2023-10-20 Thread Laszlo Ersek
RealTimeClockLib instances are consumed by edk2's EmbeddedPkg/RealTimeClockRuntimeDxe driver. In its entry point function InitializeRealTimeClock(), the driver: (1) calls LibRtcInitialize(), (2) sets the GetTime(), SetTime(), GetWakeupTime() and SetWakeupTime() runtime services to its own

[edk2-devel] [edk2-platforms PATCH 4/7] Hisilicon/RX8900RealTimeClockLib: remove superfluous instance init steps

2023-10-20 Thread Laszlo Ersek
RealTimeClockLib instances are consumed by edk2's EmbeddedPkg/RealTimeClockRuntimeDxe driver. In its entry point function InitializeRealTimeClock(), the driver: (1) calls LibRtcInitialize(), (2) sets the GetTime(), SetTime(), GetWakeupTime() and SetWakeupTime() runtime services to its own

[edk2-devel] [edk2-platforms PATCH 7/7] Omap35xxPkg/RealTimeClockLib: remove superfluous instance init steps

2023-10-20 Thread Laszlo Ersek
RealTimeClockLib instances are consumed by edk2's EmbeddedPkg/RealTimeClockRuntimeDxe driver. In its entry point function InitializeRealTimeClock(), the driver: (1) calls LibRtcInitialize(), (2) sets the GetTime(), SetTime(), GetWakeupTime() and SetWakeupTime() runtime services to its own

[edk2-devel] [edk2-platforms PATCH 2/7] LoongArchQemuPkg/LsRealTimeClockLib: remove superfluous instance init steps

2023-10-20 Thread Laszlo Ersek
RealTimeClockLib instances are consumed by edk2's EmbeddedPkg/RealTimeClockRuntimeDxe driver. In its entry point function InitializeRealTimeClock(), the driver: (1) calls LibRtcInitialize(), (2) sets the GetTime(), SetTime(), GetWakeupTime() and SetWakeupTime() runtime services to its own

[edk2-devel] [edk2-platforms PATCH 5/7] Silicon/Marvell/RealTimeClockLib: remove superfluous instance init steps

2023-10-20 Thread Laszlo Ersek
RealTimeClockLib instances are consumed by edk2's EmbeddedPkg/RealTimeClockRuntimeDxe driver. In its entry point function InitializeRealTimeClock(), the driver: (1) calls LibRtcInitialize(), (2) sets the GetTime(), SetTime(), GetWakeupTime() and SetWakeupTime() runtime services to its own

[edk2-devel] [edk2-platforms PATCH 3/7] Hisilicon/M41T83RealTimeClockLib: remove superfluous instance init steps

2023-10-20 Thread Laszlo Ersek
RealTimeClockLib instances are consumed by edk2's EmbeddedPkg/RealTimeClockRuntimeDxe driver. In its entry point function InitializeRealTimeClock(), the driver: (1) calls LibRtcInitialize(), (2) sets the GetTime(), SetTime(), GetWakeupTime() and SetWakeupTime() runtime services to its own

[edk2-devel] [edk2-platforms PATCH 0/7] drop needless init steps in RealTimeClockLib instances

2023-10-20 Thread Laszlo Ersek
https://bugzilla.tianocore.org/show_bug.cgi?id=4565 RealTimeClockLib instances should neither set gRT fields nor install EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL in LibRtcInitialize(); EmbeddedPkg/RealTimeClockRuntimeDxe already performs those actions. Cc: Ard Biesheuvel Cc: Bibo Mao Cc: Chao Li Cc:

[edk2-devel] [edk2-platforms PATCH 1/7] Hisilicon/DS3231RealTimeClockLib: remove superfluous instance init steps

2023-10-20 Thread Laszlo Ersek
RealTimeClockLib instances are consumed by edk2's EmbeddedPkg/RealTimeClockRuntimeDxe driver. In its entry point function InitializeRealTimeClock(), the driver: (1) calls LibRtcInitialize(), (2) sets the GetTime(), SetTime(), GetWakeupTime() and SetWakeupTime() runtime services to its own

Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS

2023-10-18 Thread Konstantin Aladyshev
- > > From: Chang, Abner > > Sent: Wednesday, October 18, 2023 10:49 AM > > To: Konstantin Aladyshev > > Subject: RE: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS > > > > Sure, this works for me. I will update the code. > > > > Thank

Re: [edk2-devel] [edk2-platforms][PATCH 2/2] OutOfBandManagement/IpmiFeaturePKg: Remove IpmiCommandLib.h from IpmiFeaturePkg

2023-10-17 Thread Chang, Abner via groups.io
Attar, AbdulLateef (Abdul Lateef) ; Isaac > Oram ; Nickle Wang ; Nate > DeSimone > Subject: [edk2-devel] [edk2-platforms][PATCH 2/2] > OutOfBandManagement/IpmiFeaturePKg: Remove IpmiCommandLib.h from > IpmiFeaturePkg > > Caution: This message originated from an External So

Re: [edk2-devel] [edk2-platforms][PATCH 1/2] ManageabilityPkg/Ipmi: Remove IpmiCommandLib.h from ManageabilityPkg

2023-10-17 Thread Chang, Abner via groups.io
Attar, AbdulLateef (Abdul Lateef) ; Isaac > Oram ; Nickle Wang > Subject: [edk2-devel] [edk2-platforms][PATCH 1/2] ManageabilityPkg/Ipmi: > Remove IpmiCommandLib.h from ManageabilityPkg > > Caution: This message originated from an External Source. Use proper caution > when

Re: [edk2-devel] [edk2-platforms PATCH 1/1] AmpereAltraPkg/Ac01PcieLib: drop useless link status register read

2023-10-17 Thread Laszlo Ersek
On 10/17/23 13:38, Nhi Pham via groups.io wrote: > Thanks, Laszlo for this patch. > > Reviewed-by: Nhi Pham > > Regards, > Nhi Thank you both for reviewing; commit 7f3e7fc0b4ed. Laszlo > > On 10/17/2023 5:05 PM, Laszlo Ersek via groups.io wrote: >> Nhi says that reading

Re: [edk2-devel] [edk2-platforms PATCH 1/1] AmpereAltraPkg/Ac01PcieLib: drop useless link status register read

2023-10-17 Thread Nhi Pham via groups.io
Thanks, Laszlo for this patch. Reviewed-by: Nhi Pham Regards, Nhi On 10/17/2023 5:05 PM, Laszlo Ersek via groups.io wrote: Nhi says that reading LINK_CONTROL_LINK_STATUS_REG is redundant; its only use was debugging (before commit 380b4b40c60d). Thus, we can go farther than commit

Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS

2023-10-17 Thread Chang, Abner via groups.io
[AMD Official Use Only - General] > -Original Message- > From: Konstantin Aladyshev > Sent: Tuesday, October 17, 2023 4:54 PM > To: Chang, Abner > Cc: disc...@edk2.groups.io; devel@edk2.groups.io > Subject: Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP ov

Re: [edk2-devel] [edk2-platforms PATCH 1/1] AmpereAltraPkg/Ac01PcieLib: drop useless link status register read

2023-10-17 Thread Rebecca Cran via groups.io
On 10/17/2023 4:05 AM, Laszlo Ersek wrote: Nhi says that reading LINK_CONTROL_LINK_STATUS_REG is redundant; its only use was debugging (before commit 380b4b40c60d). Thus, we can go farther than commit 2e27c62ef000, and remove the MmioRead32() call altogether. Build-tested with "Jade.dsc". Cc:

[edk2-devel] [edk2-platforms PATCH 1/1] AmpereAltraPkg/Ac01PcieLib: drop useless link status register read

2023-10-17 Thread Laszlo Ersek
Nhi says that reading LINK_CONTROL_LINK_STATUS_REG is redundant; its only use was debugging (before commit 380b4b40c60d). Thus, we can go farther than commit 2e27c62ef000, and remove the MmioRead32() call altogether. Build-tested with "Jade.dsc". Cc: Chuong Tran Cc: Leif Lindholm Cc: Nhi Pham

Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS

2023-10-17 Thread Konstantin Aladyshev
al Message- > > From: disc...@edk2.groups.io On Behalf Of > > Chang, Abner via groups.io > > Sent: Saturday, October 14, 2023 5:11 PM > > To: Konstantin Aladyshev > > Cc: disc...@edk2.groups.io; devel@edk2.groups.io > > Subject: Re: [edk2-devel] [edk2-discuss] PLDM

Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS

2023-10-16 Thread Chang, Abner via groups.io
at this version. Thanks Abner > -Original Message- > From: disc...@edk2.groups.io On Behalf Of > Chang, Abner via groups.io > Sent: Saturday, October 14, 2023 5:11 PM > To: Konstantin Aladyshev > Cc: disc...@edk2.groups.io; devel@edk2.groups.io > Subject: Re: [edk2-devel] [edk2-d

Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS

2023-10-14 Thread Chang, Abner via groups.io
[AMD Official Use Only - General] > -Original Message- > From: Konstantin Aladyshev > Sent: Saturday, October 14, 2023 4:26 PM > To: Chang, Abner > Cc: disc...@edk2.groups.io; devel@edk2.groups.io > Subject: Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP ov

Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS

2023-10-14 Thread Konstantin Aladyshev
icial Use Only - General] > > > -Original Message- > > From: Konstantin Aladyshev > > Sent: Friday, October 13, 2023 8:16 PM > > To: Chang, Abner > > Cc: disc...@edk2.groups.io; devel@edk2.groups.io > > Subject: Re: [edk2-devel] [edk2-discuss] PLDM messages

Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS

2023-10-14 Thread Chang, Abner via groups.io
[AMD Official Use Only - General] > -Original Message- > From: Konstantin Aladyshev > Sent: Friday, October 13, 2023 8:16 PM > To: Chang, Abner > Cc: disc...@edk2.groups.io; devel@edk2.groups.io > Subject: Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP ov

Re: [edk2-devel] [edk2-platforms PATCH 00/19] let LibRtcVirtualNotifyEvent() be dropped

2023-10-13 Thread Laszlo Ersek
On 10/13/23 12:12, Ard Biesheuvel wrote: > On Thu, 12 Oct 2023 at 11:10, Laszlo Ersek wrote: >> >> https://bugzilla.tianocore.org/show_bug.cgi?id=4564 >> >> The RealTimeClockLib class header in edk2's EmbeddedPkg mistakenly >> declares a function called LibRtcVirtualNotifyEvent(). No component

Re: [edk2-devel] [edk2-platforms PATCH 12/19] AmpereAltraPkg/Ac01PcieLib: fix compilation error

2023-10-13 Thread Laszlo Ersek
On 10/13/23 05:24, Nhi Pham wrote: > HI Lazslo, > > I was not reviewing carefully. The MmioRead32 is redundant code. Can you > help me get rid of that code? Sure, if you don't need the read access to the LINK_CONTROL_LINK_STATUS_REG register, I can drop that too; I just didn't want to do it

Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS

2023-10-13 Thread Konstantin Aladyshev
t; Abner > > > > -Original Message- > > From: Konstantin Aladyshev > > Sent: Thursday, October 5, 2023 11:18 PM > > To: Chang, Abner > > Cc: disc...@edk2.groups.io; devel@edk2.groups.io > > Subject: Re: [edk2-devel] [edk2-discuss] PLDM mes

Re: [edk2-devel] [edk2-platforms PATCH 00/19] let LibRtcVirtualNotifyEvent() be dropped

2023-10-13 Thread Ard Biesheuvel
On Thu, 12 Oct 2023 at 11:10, Laszlo Ersek wrote: > > https://bugzilla.tianocore.org/show_bug.cgi?id=4564 > > The RealTimeClockLib class header in edk2's EmbeddedPkg mistakenly > declares a function called LibRtcVirtualNotifyEvent(). No component ever > calls this function across module

Re: [edk2-devel] [edk2-platforms PATCH 12/19] AmpereAltraPkg/Ac01PcieLib: fix compilation error

2023-10-12 Thread Nhi Pham via groups.io
HI Lazslo, I was not reviewing carefully. The MmioRead32 is redundant code. Can you help me get rid of that code? Thanks, Nhi On 10/13/2023 9:20 AM, Nhi Pham wrote: Thanks for fixing it. Reviewed-by: Nhi Pham Regards, Nhi On 10/12/2023 4:09 PM, Laszlo Ersek wrote: Commit 380b4b40c60d

Re: [edk2-devel] [edk2-platforms PATCH 13/19] JadePkg/PCF85063RealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread Nhi Pham via groups.io
It looks good to me. Reviewed-by: Nhi Pham Thanks, Nhi On 10/12/2023 4:09 PM, Laszlo Ersek wrote: The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib

Re: [edk2-devel] [edk2-platforms PATCH 12/19] AmpereAltraPkg/Ac01PcieLib: fix compilation error

2023-10-12 Thread Nhi Pham via groups.io
Thanks for fixing it. Reviewed-by: Nhi Pham Regards, Nhi On 10/12/2023 4:09 PM, Laszlo Ersek wrote: Commit 380b4b40c60d ("AmpereAltraPkg: Update Ampere specific platform PCIe core", 2023-03-29) removed the DEBUG macro call from Ac01PcieCoreUpdateLink() that was the only reader of "Val".

Re: [edk2-devel] [edk2-platforms PATCH 16/19] Armada7k8k/RealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread Marcin Wojtas via groups.io
Hi, czw., 12 paź 2023 o 11:10 Laszlo Ersek napisał(a): > > The RealTimeClockLib class header in edk2 mistakenly declares a function > called LibRtcVirtualNotifyEvent(). No component ever calls this function > crossing module boundaries; all RealTimeClockLib instances in edk2 and > edk2-platforms

Re: [edk2-devel] [edk2-platforms PATCH 14/19] LoongArchQemuPkg/LsRealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread Chao Li
Hi Laszlo, This patch is look good to me. Thanks. Acked-by: Chao Li Thanks, Chao 在 2023/10/12 20:14, xianglai 写道: Hi Laszlo Ersek: The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing

Re: [edk2-devel] [edk2-platforms PATCH 14/19] LoongArchQemuPkg/LsRealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread xianglai
Hi Laszlo Ersek: The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register)

[edk2-devel] [edk2-non-osi PATCH 1/1] Hisilicon: rename OemMiscLib class dependencies to HisiOemMiscLib

2023-10-12 Thread Laszlo Ersek
Edk2 commit [1] introduced the library class header to ArmPkg; commit [2] introduced the first OemMiscLib instance to ArmPkg; and commit [3] introduced (retroactively) the library class itself to ArmPkg. Alas, when all these edk2 commits were made, edk2-platforms already had a

[edk2-devel] [edk2-non-osi PATCH 0/1] Hisilicon: rename OemMiscLib class dependencies to HisiOemMiscLib

2023-10-12 Thread Laszlo Ersek
https://bugzilla.tianocore.org/show_bug.cgi?id=4564 This patch accompanies "[edk2-platforms PATCH 04/19] Hisilicon: rename OemMiscLib class to HisiOemMiscLib". Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Wenyi Xie Thanks Laszlo Laszlo Ersek (1): Hisilicon: rename OemMiscLib class

[edk2-devel] [edk2-platforms PATCH 08/19] Hisilicon: drop unused DS3231RealTimeClockLib instance

2023-10-12 Thread Laszlo Ersek
Edk2-platforms contains two DS3231RealTimeClockLib instances: - Silicon/Hisilicon/Library/DS3231RealTimeClockLib - Platform/Hisilicon/D03/Library/DS3231RealTimeClockLib The latter is still used (by the D03 and D05 platforms), but the former has not been referenced since commit 478282ea28c7

[edk2-devel] [edk2-platforms PATCH 16/19] Armada7k8k/RealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread Laszlo Ersek
The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register) their

[edk2-devel] [edk2-platforms PATCH 18/19] FT2000-4Pkg/RealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread Laszlo Ersek
The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register) their

[edk2-devel] [edk2-platforms PATCH 13/19] JadePkg/PCF85063RealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread Laszlo Ersek
The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register) their

[edk2-devel] [edk2-platforms PATCH 19/19] Omap35xxPkg/RealTimeClockLib: drop LibRtcVirtualNotifyEvent

2023-10-12 Thread Laszlo Ersek
The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register) their

[edk2-devel] [edk2-platforms PATCH 17/19] NXP/Pcf8563RealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread Laszlo Ersek
The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register) their

[edk2-devel] [edk2-platforms PATCH 14/19] LoongArchQemuPkg/LsRealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread Laszlo Ersek
The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register) their

[edk2-devel] [edk2-platforms PATCH 15/19] Styx/RealTimeClockLib: hide LibRtcVirtualNotifyEvent

2023-10-12 Thread Laszlo Ersek
The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register) their

[edk2-devel] [edk2-platforms PATCH 12/19] AmpereAltraPkg/Ac01PcieLib: fix compilation error

2023-10-12 Thread Laszlo Ersek
Commit 380b4b40c60d ("AmpereAltraPkg: Update Ampere specific platform PCIe core", 2023-03-29) removed the DEBUG macro call from Ac01PcieCoreUpdateLink() that was the only reader of "Val". Since then, Val has only been set, but never read. This triggers "-Werror=unused-but-set-variable". Found

[edk2-devel] [edk2-platforms PATCH 10/19] Hisilicon/DS3231RealTimeClockLib: drop LibRtcVirtualNotifyEvent

2023-10-12 Thread Laszlo Ersek
The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register) their

[edk2-devel] [edk2-platforms PATCH 11/19] Hisilicon/RX8900RealTimeClockLib: drop LibRtcVirtualNotifyEvent

2023-10-12 Thread Laszlo Ersek
The RealTimeClockLib class header in edk2 mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function crossing module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms are supposed to register (and do register) their

[edk2-devel] [edk2-platforms PATCH 03/19] Hisilicon.dsc.inc: resolve VariableFlashInfoLib

2023-10-12 Thread Laszlo Ersek
Since edk2 commit 8db39c60cdf3 ("MdeModulePkg/FaultTolerantWrite: Consume Variable Flash Info", 2022-05-19), the Hisilicon platforms (D03, D05, D06, HiKey, HiKey960) must have been broken; they don't resolve the new VariableFlashInfoLib class to the (only) BaseVariableFlashInfoLib instance. Do

[edk2-devel] [edk2-platforms PATCH 09/19] Hisilicon: drop unused VirtualRealTimeClockLib instance

2023-10-12 Thread Laszlo Ersek
VirtualRealTimeClockLib is not used in either edk2-platforms or edk2-non-osi, and there never has been a reference to it -- even the initial code drop that added it to edk2-platforms [*] contained zero references to it. Remove it. [*] commit 600081b52deb ("Platform,Silicon: Import Hisilicon

[edk2-devel] [edk2-platforms PATCH 04/19] Hisilicon: rename OemMiscLib class to HisiOemMiscLib

2023-10-12 Thread Laszlo Ersek
Edk2 commit [1] introduced the library class header to ArmPkg; commit [2] introduced the first OemMiscLib instance to ArmPkg; and commit [3] introduced (retroactively) the library class itself to ArmPkg. Alas, when all these edk2 commits were made, edk2-platforms already had a

[edk2-devel] [edk2-platforms PATCH 02/19] Hisilicon/FlashFvbDxe: fix PcdNorFlashCheckBlockLocked token space GUID

2023-10-12 Thread Laszlo Ersek
Edk2 commit cc650a0378f8 ("ArmPlatformPkg: Retire NorFlashDxe driver", 2022-11-06) removed PcdNorFlashCheckBlockLocked from "gArmPlatformTokenSpaceGuid"; edk2-platforms commit d7b286ae5f53 ("Platform/ARM: clone NorFlashDxe from ArmPlatformPkg", 2022-10-19) provided it in the *different* namespace

[edk2-devel] [edk2-platforms PATCH 06/19] Hisilicon/Hi1620AcpiTables: fix up ASL

2023-10-12 Thread Laszlo Ersek
Recent "iasl" does not accept "Hi1620Iort.asl" any longer: - various "Interrupt" fields are now called "GSIV", - "DeviceID mapping index" has been renamed to "Device ID Mapping Index". Update the field names in "Hi1620Iort.asl"; it's necessary for building the Hisilicon platform DSCs. Cc: Ard

[edk2-devel] [edk2-platforms PATCH 05/19] Hisilicon: add missing include file to Pptt components

2023-10-12 Thread Laszlo Ersek
Some more random bitrot in Hisilicon; must be fixed for building the Hisilicon DSCs. Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Wenyi Xie Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=4564 Signed-off-by: Laszlo Ersek --- Silicon/Hisilicon/Hi1616/Pptt/Pptt.h | 1 +

[edk2-devel] [edk2-platforms PATCH 07/19] Hisilicon/ProcessorSubClassDxe: drop conflicting PROCESSOR_STATUS_DATA type

2023-10-12 Thread Laszlo Ersek
Edk2 commit 4e1f316cec3f ("MdePkg: Update IndustryStandard/SmBios.h with processor status data", 2021-02-08) upstreamed the PROCESSOR_STATUS_DATA type, so now the identical typedef in "ProcessorSubClass.h" is superfluous, and conflicts, breaking the Hisilicon DSCs' compilation. Remove it. Cc: Ard

[edk2-devel] [edk2-platforms PATCH 00/19] let LibRtcVirtualNotifyEvent() be dropped

2023-10-12 Thread Laszlo Ersek
https://bugzilla.tianocore.org/show_bug.cgi?id=4564 The RealTimeClockLib class header in edk2's EmbeddedPkg mistakenly declares a function called LibRtcVirtualNotifyEvent(). No component ever calls this function across module boundaries; all RealTimeClockLib instances in edk2 and edk2-platforms

[edk2-devel] [edk2-platforms PATCH 01/19] Hisilicon: enable NOOPT builds

2023-10-12 Thread Laszlo Ersek
There's no reason for not supporting NOOPT in the Hisilicon platform DSCs, and there is a reason for supporting them: build-only testing. Add NOOPT wherever it's missing, and stick to a consistent order wherever NOOPT already exists. Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Wenyi Xie Ref:

[edk2-devel] [edk2-platforms PATCH v1 2/4] Silicon/Marvell: Use new package name and path

2023-10-11 Thread Narinder Dhillon
From: Narinder Dhillon New Marvell package name, path, and token space needs to be propagated to all dependent files. Signed-off-by: Narinder Dhillon --- .../Applications/EepromCmd/EepromCmd.inf | 2 +- .../Applications/FirmwareUpdate/FUpdate.inf | 6 +-

[edk2-devel] [edk2-platforms PATCH v1 4/4] Platform/SolidRun: Use new package name and path

2023-10-11 Thread Narinder Dhillon
From: Narinder Dhillon New Marvell package name, path, and token space needs to be propagated to all dependent files. Signed-off-by: Narinder Dhillon --- .../Armada80x0McBin/Armada80x0McBin.dsc | 116 +- .../Armada80x0McBinBoardDescLib.inf | 2 +-

[edk2-devel] [edk2-platforms PATCH v1 3/4] Platform/Marvell: Use new package name and path

2023-10-11 Thread Narinder Dhillon
From: Narinder Dhillon New Marvell package name, path, and token space needs to be propagated to all dependent files. Signed-off-by: Narinder Dhillon --- .../Marvell/Armada70x0Db/Armada70x0Db.dsc | 108 +++--- .../Armada70x0DbBoardDescLib.inf | 2 +-

[edk2-devel] [edk2-platforms PATCH v1 0/4] Marvell package restructure

2023-10-11 Thread Narinder Dhillon
From: Narinder Dhillon Current Silicon/Marvell package structure does not allow sharing of components that are common to different SoC's. This restructure will increase shared code and better seperation. Credit to Leif Lindholm for providing this new structure. Narinder Dhillon (4):

[edk2-devel] [edk2-platforms PATCH v1 1/4] Silicon/Marvell: Retructure package

2023-10-11 Thread Narinder Dhillon
From: Narinder Dhillon Current Marvell package structure makes it difficult to add new silicon packages that reuse common elements without creating nested DEC files. This patch creates a new MarvellSiliconPkg folder and moves the current common elements inside it. Also gMarvellTokenSpaceGuid

Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS

2023-10-10 Thread Chang, Abner via groups.io
October 5, 2023 11:18 PM > To: Chang, Abner > Cc: disc...@edk2.groups.io; devel@edk2.groups.io > Subject: Re: [edk2-devel] [edk2-discuss] PLDM messages via MCTP over KCS > > Caution: This message originated from an External Source. Use proper caution > when opening attachments, cl

Re: [edk2-devel] [edk2-platforms][PATCH V3 1/1] Platform/ARM/N1sdp: Add support to parse NT_FW_CONFIG

2023-10-10 Thread chandni cherukuri
Hi Sahil, These changes look good to me. Reviewed-by: Chandni Cherukuri Regards, Chandni Cherukuri On Wed, Aug 23, 2023 at 4:33 PM sahil wrote: > > NT_FW_CONFIG DTB contains platform information passed by > Tf-A boot stage. > This information is used for Virtual memory map generation >

回复: [edk2-devel] [edk2-platforms][PATCH 2/2] OutOfBandManagement/IpmiFeaturePKg: Remove IpmiCommandLib.h from IpmiFeaturePkg

2023-10-10 Thread gaoliming via groups.io
This is a good clean. Reviewed-by: Liming Gao > -邮件原件- > 发件人: devel@edk2.groups.io 代表 Chang, Abner > via groups.io > 发送时间: 2023年10月10日 16:22 > 收件人: devel@edk2.groups.io > 抄送: Abdul Lateef Attar ; Isaac Oram > ; Nickle Wang ; Nate > DeSimone > 主题: [edk2-devel]

回复: [edk2-devel] [edk2-platforms][PATCH 1/2] ManageabilityPkg/Ipmi: Remove IpmiCommandLib.h from ManageabilityPkg

2023-10-10 Thread gaoliming via groups.io
This change is a good clean. Reviewed-by: Liming Gao Thanks Liming > -邮件原件- > 发件人: devel@edk2.groups.io 代表 Chang, Abner > via groups.io > 发送时间: 2023年10月10日 16:22 > 收件人: devel@edk2.groups.io > 抄送: Abdul Lateef Attar ; Isaac Oram > ; Nickle Wang > 主题: [edk2-devel

Re: [edk2-devel] [edk2-platforms][PATCH] ManageabilityPkg/Ipmi: IPMI Get System Interface Capabilities Command

2023-10-10 Thread Attar, AbdulLateef (Abdul Lateef) via groups.io
[AMD Official Use Only - General] Looks good. Reviewed-by: Abdul Lateef Attar -Original Message- From: Chang, Abner Sent: Tuesday, October 10, 2023 8:47 PM To: devel@edk2.groups.io Cc: Attar, AbdulLateef (Abdul Lateef) ; Nickle Wang Subject: [edk2-platforms][PATCH]

[edk2-devel] [edk2-platforms][PATCH] ManageabilityPkg/Ipmi: IPMI Get System Interface Capabilities Command

2023-10-10 Thread Chang, Abner via groups.io
From: Abner Chang Implment AppFn, 0x57 command. Signed-off-by: Abner Chang Cc: Abdul Lateef Attar Cc: Nickle Wang --- .../IpmiCommandLib/IpmiCommandLibNetFnApp.c | 68 +++ 1 file changed, 68 insertions(+) diff --git

<    5   6   7   8   9   10   11   12   13   14   >