[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 17/20] smbios: error out when building type 4 table is not pos
From: |
Igor Mammedov |
Subject: |
[PATCH v3 17/20] smbios: error out when building type 4 table is not possible |
Date: |
Tue, 12 Mar 2024 17:10:47 +0100 |
If SMBIOS v2 version is requested but number of cores/threads
are more than it's possible to describe with v2, error out
instead of silently ignoring the fact and filling core/thread
count with bogus values.
This will help caller to decide if it should fallback to
SMBIOSv3 when smbios-entry-point-type='auto'
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Ani Sinha <anisinha@redhat.com>
Tested-by: Fiona Ebner <f.ebner@proxmox.com>
---
hw/smbios/smbios.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/hw/smbios/smbios.c b/hw/smbios/smbios.c
index c4a953bbc9..b64d3bc227 100644
--- a/hw/smbios/smbios.c
+++ b/hw/smbios/smbios.c
@@ -605,7 +605,8 @@ static void smbios_build_type_3_table(void)
}
static void smbios_build_type_4_table(MachineState *ms, unsigned instance,
- SmbiosEntryPointType ep_type)
+ SmbiosEntryPointType ep_type,
+ Error **errp)
{
char sock_str[128];
size_t tbl_len = SMBIOS_TYPE_4_LEN_V28;
@@ -659,6 +660,12 @@ static void smbios_build_type_4_table(MachineState *ms,
unsigned instance,
if (tbl_len == SMBIOS_TYPE_4_LEN_V30) {
t->core_count2 = t->core_enabled2 = cpu_to_le16(cores_per_socket);
t->thread_count2 = cpu_to_le16(threads_per_socket);
+ } else if (t->core_count == 0xFF || t->thread_count == 0xFF) {
+ error_setg(errp, "SMBIOS 2.0 doesn't support number of processor "
+ "cores/threads more than 255, use "
+ "-machine smbios-entry-point-type=64 option to enable
"
+ "SMBIOS 3.0 support");
+ return;
}
SMBIOS_BUILD_TABLE_POST;
@@ -988,7 +995,10 @@ static bool smbios_get_tables_ep(MachineState *ms,
assert(ms->smp.sockets >= 1);
for (i = 0; i < ms->smp.sockets; i++) {
- smbios_build_type_4_table(ms, i, ep_type);
+ smbios_build_type_4_table(ms, i, ep_type, errp);
+ if (*errp) {
+ goto err_exit;
+ }
}
smbios_build_type_8_table();
--
2.39.3
- [PATCH v3 03/20] tests: smbios: add test for legacy mode CLI options, (continued)
- [PATCH v3 03/20] tests: smbios: add test for legacy mode CLI options, Igor Mammedov, 2024/03/12
- [PATCH v3 08/20] smbios: don't check type4 structures in legacy mode, Igor Mammedov, 2024/03/12
- [PATCH v3 12/20] smbios: handle errors consistently, Igor Mammedov, 2024/03/12
- [PATCH v3 10/20] smbios: rename/expose structures/bitmaps used by both legacy and modern code, Igor Mammedov, 2024/03/12
- [PATCH v3 16/20] smbios: in case of entry point is 'auto' try to build v2 tables 1st, Igor Mammedov, 2024/03/12
- [PATCH v3 18/20] tests: acpi/smbios: whitelist expected blobs, Igor Mammedov, 2024/03/12
- [PATCH v3 09/20] smbios: add smbios_add_usr_blob_size() helper, Igor Mammedov, 2024/03/12
- [PATCH v3 13/20] smbios: get rid of global smbios_ep_type, Igor Mammedov, 2024/03/12
- [PATCH v3 15/20] smbios: extend smbios-entry-point-type with 'auto' value, Igor Mammedov, 2024/03/12
- [PATCH v3 20/20] tests: acpi: update expected SSDT.dimmpxm blob, Igor Mammedov, 2024/03/12
- [PATCH v3 17/20] smbios: error out when building type 4 table is not possible,
Igor Mammedov <=
- [PATCH v3 06/20] smbios: get rid of smbios_legacy global, Igor Mammedov, 2024/03/12
- [PATCH v3 19/20] pc/q35: set SMBIOS entry point type to 'auto' by default, Igor Mammedov, 2024/03/12
- Re: [PATCH v3 00/20] Workaround Windows failing to find 64bit SMBIOS entry point with SeaBIOS, Michael S. Tsirkin, 2024/03/12
- Re: [PATCH v3 00/20] Workaround Windows failing to find 64bit SMBIOS entry point with SeaBIOS, Michael S. Tsirkin, 2024/03/12