* [edk2-devel] [PATCH] ShellPkg: Update smbiosview type 4 with SMBIOS 3.6 fields
@ 2024-03-26 9:11 Lien, HoraceX
2024-03-27 2:58 ` Gao, Zhichao
0 siblings, 1 reply; 2+ messages in thread
From: Lien, HoraceX @ 2024-03-26 9:11 UTC (permalink / raw)
To: devel; +Cc: HoraceX Lien, Zhichao Gao
From: HoraceX Lien <horacex.lien@intel.com>
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=4737
update smbiosview type 4 related fileds.
Signed-off-by: HoraceX Lien <horacex.lien@intel.com>
Cc: Zhichao Gao <zhichao.gao@intel.com>
---
.../Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
index f96317b314..48b4488215 100644
--- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
+++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
@@ -520,6 +520,10 @@ SmbiosPrintStructure (
ShellPrintEx (-1, -1, L"Thread Count 2: %u\n", Struct->Type4->ThreadCount2);
}
+ if (AE_SMBIOS_VERSION (0x3, 0x6) && (Struct->Hdr->Length > 0x2E)) {
+ ShellPrintEx (-1, -1, L"Thead Enable: %u\n", Struct->Type4->ThreadEnabled);
+ }
+
break;
//
--
2.43.0.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#117106): https://edk2.groups.io/g/devel/message/117106
Mute This Topic: https://groups.io/mt/105155005/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [edk2-devel] [PATCH] ShellPkg: Update smbiosview type 4 with SMBIOS 3.6 fields
2024-03-26 9:11 [edk2-devel] [PATCH] ShellPkg: Update smbiosview type 4 with SMBIOS 3.6 fields Lien, HoraceX
@ 2024-03-27 2:58 ` Gao, Zhichao
0 siblings, 0 replies; 2+ messages in thread
From: Gao, Zhichao @ 2024-03-27 2:58 UTC (permalink / raw)
To: devel@edk2.groups.io, Lien, HoraceX
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Thanks,
Zhichao
> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Lien,
> HoraceX
> Sent: Tuesday, March 26, 2024 5:11 PM
> To: devel@edk2.groups.io
> Cc: Lien, HoraceX <horacex.lien@intel.com>; Gao, Zhichao
> <zhichao.gao@intel.com>
> Subject: [edk2-devel] [PATCH] ShellPkg: Update smbiosview type 4 with
> SMBIOS 3.6 fields
>
> From: HoraceX Lien <horacex.lien@intel.com>
>
> REF:https://bugzilla.tianocore.org/show_bug.cgi?id=4737
>
> update smbiosview type 4 related fileds.
>
> Signed-off-by: HoraceX Lien <horacex.lien@intel.com>
> Cc: Zhichao Gao <zhichao.gao@intel.com>
> ---
> .../Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git
> a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> index f96317b314..48b4488215 100644
> ---
> a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> +++
> b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> @@ -520,6 +520,10 @@ SmbiosPrintStructure (
> ShellPrintEx (-1, -1, L"Thread Count 2: %u\n", Struct->Type4-
> >ThreadCount2); } + if (AE_SMBIOS_VERSION (0x3, 0x6) && (Struct-
> >Hdr->Length > 0x2E)) {+ ShellPrintEx (-1, -1, L"Thead Enable: %u\n",
> Struct->Type4->ThreadEnabled);+ }+ break; //--
> 2.43.0.windows.1
>
>
>
> -=-=-=-=-=-=
> Groups.io Links: You receive all messages sent to this group.
> View/Reply Online (#117106):
> https://edk2.groups.io/g/devel/message/117106
> Mute This Topic: https://groups.io/mt/105155005/1768756
> Group Owner: devel+owner@edk2.groups.io
> Unsubscribe: https://edk2.groups.io/g/devel/unsub [zhichao.gao@intel.com]
> -=-=-=-=-=-=
>
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#117146): https://edk2.groups.io/g/devel/message/117146
Mute This Topic: https://groups.io/mt/105155005/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-03-27 2:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-26 9:11 [edk2-devel] [PATCH] ShellPkg: Update smbiosview type 4 with SMBIOS 3.6 fields Lien, HoraceX
2024-03-27 2:58 ` Gao, Zhichao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox