diff mbox series

[3/4] dmicheck: add Type 44 (Processor Additional Information)

Message ID 20200407005237.145347-4-alex.hung@canonical.com
State Accepted
Headers show
Series dmicheck: update contents in SMBIOS spec 3.3 | expand

Commit Message

Alex Hung April 7, 2020, 12:52 a.m. UTC
This was introduced in SMBIOS spec 3.3. There isn't much to check for
the time being, though.

Signed-off-by: Alex Hung <alex.hung@canonical.com>
---
 src/dmi/dmicheck/dmicheck.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

Comments

Colin Ian King April 7, 2020, 3:11 p.m. UTC | #1
On 07/04/2020 01:52, Alex Hung wrote:
> This was introduced in SMBIOS spec 3.3. There isn't much to check for
> the time being, though.
> 
> Signed-off-by: Alex Hung <alex.hung@canonical.com>
> ---
>  src/dmi/dmicheck/dmicheck.c | 10 ++++++++--
>  1 file changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/src/dmi/dmicheck/dmicheck.c b/src/dmi/dmicheck/dmicheck.c
> index febb0435..be206a8a 100644
> --- a/src/dmi/dmicheck/dmicheck.c
> +++ b/src/dmi/dmicheck/dmicheck.c
> @@ -1939,10 +1939,16 @@ static void dmicheck_entry(fwts_framework *fw,
>  			dmi_reserved_bits_check(fw, table, addr, "Characteristics", hdr, sizeof(uint64_t), 0x13, 6, 63);
>  			break;
>  
> -		case 126: /* 7.45 */
> +		case 44: /* 7.45 */
> +			table = "Processor Additional Information (Type 44)";
> +			if (hdr->length < 0x6)
> +				break;
> +			break;
> +
> +		case 126: /* 7.46 */
>  			table = "Inactive (Type 126)";
>  			break;
> -		case SMBIOS_END_OF_TABLE: /* 7.46 */
> +		case SMBIOS_END_OF_TABLE: /* 7.47 */
>  			table = "End of Table (Type 127)";
>  			break;
>  		default:
> 
Acked-by: Colin Ian King <colin.king@canonical.com>
Ivan Hu April 8, 2020, 6:41 a.m. UTC | #2
On 4/7/20 8:52 AM, Alex Hung wrote:
> This was introduced in SMBIOS spec 3.3. There isn't much to check for
> the time being, though.
> 
> Signed-off-by: Alex Hung <alex.hung@canonical.com>
> ---
>  src/dmi/dmicheck/dmicheck.c | 10 ++++++++--
>  1 file changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/src/dmi/dmicheck/dmicheck.c b/src/dmi/dmicheck/dmicheck.c
> index febb0435..be206a8a 100644
> --- a/src/dmi/dmicheck/dmicheck.c
> +++ b/src/dmi/dmicheck/dmicheck.c
> @@ -1939,10 +1939,16 @@ static void dmicheck_entry(fwts_framework *fw,
>  			dmi_reserved_bits_check(fw, table, addr, "Characteristics", hdr, sizeof(uint64_t), 0x13, 6, 63);
>  			break;
>  
> -		case 126: /* 7.45 */
> +		case 44: /* 7.45 */
> +			table = "Processor Additional Information (Type 44)";
> +			if (hdr->length < 0x6)
> +				break;
> +			break;
> +
> +		case 126: /* 7.46 */
>  			table = "Inactive (Type 126)";
>  			break;
> -		case SMBIOS_END_OF_TABLE: /* 7.46 */
> +		case SMBIOS_END_OF_TABLE: /* 7.47 */
>  			table = "End of Table (Type 127)";
>  			break;
>  		default:
> 


Acked-by: Ivan Hu <ivan.hu@canonical.com>
diff mbox series

Patch

diff --git a/src/dmi/dmicheck/dmicheck.c b/src/dmi/dmicheck/dmicheck.c
index febb0435..be206a8a 100644
--- a/src/dmi/dmicheck/dmicheck.c
+++ b/src/dmi/dmicheck/dmicheck.c
@@ -1939,10 +1939,16 @@  static void dmicheck_entry(fwts_framework *fw,
 			dmi_reserved_bits_check(fw, table, addr, "Characteristics", hdr, sizeof(uint64_t), 0x13, 6, 63);
 			break;
 
-		case 126: /* 7.45 */
+		case 44: /* 7.45 */
+			table = "Processor Additional Information (Type 44)";
+			if (hdr->length < 0x6)
+				break;
+			break;
+
+		case 126: /* 7.46 */
 			table = "Inactive (Type 126)";
 			break;
-		case SMBIOS_END_OF_TABLE: /* 7.46 */
+		case SMBIOS_END_OF_TABLE: /* 7.47 */
 			table = "End of Table (Type 127)";
 			break;
 		default: