From: "Gao, Zhichao" <zhichao.gao@intel.com>
To: Samer El-Haj-Mahmoud <Samer.El-Haj-Mahmoud@arm.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Ni, Ray" <ray.ni@intel.com>, Sami Mujawar <Sami.Mujawar@arm.com>
Subject: Re: [PATCH v1 1/1] ShellPkg: smbiosview - Change some type 17 field values format
Date: Tue, 4 Aug 2020 01:33:01 +0000 [thread overview]
Message-ID: <DM6PR11MB44256A509CDDCD615662F846F64A0@DM6PR11MB4425.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20200720193231.4560-1-Samer.El-Haj-Mahmoud@arm.com>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Thanks,
Zhichao
> -----Original Message-----
> From: Samer El-Haj-Mahmoud <Samer.El-Haj-Mahmoud@arm.com>
> Sent: Tuesday, July 21, 2020 3:33 AM
> To: devel@edk2.groups.io
> Cc: Ni, Ray <ray.ni@intel.com>; Gao, Zhichao <zhichao.gao@intel.com>; Sami
> Mujawar <Sami.Mujawar@arm.com>
> Subject: [PATCH v1 1/1] ShellPkg: smbiosview - Change some type 17 field values
> format
>
> Change how some SMBIOS TYpe 17 field values are printed:
>
> - TotalWidth, DataWidth, ConfiguredMemoryClockSpeed: Print as
> hex values instead of decimal, since there are some special meanings
> for certain values (e.g. 0xFFFF)
> - VolatileSize, NonVolatileSize, CacheSize, and LogicalSize: Print
> as "0x%lx" instead of "0x%x" to prevent truncating output when
> printing these QWORD fields.
>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Zhichao Gao <zhichao.gao@intel.com>
> Cc: Sami Mujawar <Sami.Mujawar@arm.com>
> Signed-off-by: Samer El-Haj-Mahmoud <samer.el-haj-mahmoud@arm.com>
> ---
> ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c | 14
> +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git
> a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> index 1ea7b84bd0fa..7517465ddd49 100644
> --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
> @@ -746,8 +746,8 @@ SmbiosPrintStructure (
> case 17:
> PRINT_STRUCT_VALUE_H (Struct, Type17, MemoryArrayHandle);
> PRINT_STRUCT_VALUE_H (Struct, Type17, MemoryErrorInformationHandle);
> - PRINT_STRUCT_VALUE (Struct, Type17, TotalWidth);
> - PRINT_STRUCT_VALUE (Struct, Type17, DataWidth);
> + PRINT_STRUCT_VALUE_H (Struct, Type17, TotalWidth);
> + PRINT_STRUCT_VALUE_H (Struct, Type17, DataWidth);
> PRINT_STRUCT_VALUE (Struct, Type17, Size);
> DisplayMemoryDeviceFormFactor (Struct->Type17->FormFactor, Option);
> PRINT_STRUCT_VALUE_H (Struct, Type17, DeviceSet); @@ -765,7 +765,7
> @@ SmbiosPrintStructure (
> }
> if (AE_SMBIOS_VERSION (0x2, 0x7) && (Struct->Hdr->Length > 0x1C)) {
> PRINT_STRUCT_VALUE (Struct, Type17, ExtendedSize);
> - PRINT_STRUCT_VALUE (Struct, Type17, ConfiguredMemoryClockSpeed);
> + PRINT_STRUCT_VALUE_H (Struct, Type17,
> + ConfiguredMemoryClockSpeed);
> }
> if (AE_SMBIOS_VERSION (0x2, 0x8) && (Struct->Hdr->Length > 0x22)) {
> PRINT_STRUCT_VALUE (Struct, Type17, MinimumVoltage); @@ -783,16
> +783,16 @@ SmbiosPrintStructure (
> PRINT_STRUCT_VALUE_H (Struct, Type17,
> MemorySubsystemControllerProductID);
> }
> if (Struct->Hdr->Length > 0x34) {
> - PRINT_STRUCT_VALUE_H (Struct, Type17, NonVolatileSize);
> + PRINT_STRUCT_VALUE_LH (Struct, Type17, NonVolatileSize);
> }
> if (Struct->Hdr->Length > 0x3C) {
> - PRINT_STRUCT_VALUE_H (Struct, Type17, VolatileSize);
> + PRINT_STRUCT_VALUE_LH (Struct, Type17, VolatileSize);
> }
> if (Struct->Hdr->Length > 0x44) {
> - PRINT_STRUCT_VALUE_H (Struct, Type17, CacheSize);
> + PRINT_STRUCT_VALUE_LH (Struct, Type17, CacheSize);
> }
> if (Struct->Hdr->Length > 0x4C) {
> - PRINT_STRUCT_VALUE_H (Struct, Type17, LogicalSize);
> + PRINT_STRUCT_VALUE_LH (Struct, Type17, LogicalSize);
> }
> }
> break;
> --
> 2.17.1
prev parent reply other threads:[~2020-08-04 1:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-20 19:32 [PATCH v1 1/1] ShellPkg: smbiosview - Change some type 17 field values format Samer El-Haj-Mahmoud
2020-08-04 1:33 ` Gao, Zhichao [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DM6PR11MB44256A509CDDCD615662F846F64A0@DM6PR11MB4425.namprd11.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox