diff options
| author | Igor Mammedov <imammedo@redhat.com> | 2024-03-14 16:22:55 +0100 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2024-03-18 08:42:46 -0400 |
| commit | 6735a4943e024715cf256625f02231e88f76c40b (patch) | |
| tree | bf614e0fc87377daa031b7f568768072df087d96 | |
| parent | 69ea07a56ef54050a61b91fe8236fef4908fe5d1 (diff) | |
| download | focaccia-qemu-6735a4943e024715cf256625f02231e88f76c40b.tar.gz focaccia-qemu-6735a4943e024715cf256625f02231e88f76c40b.zip | |
smbios: clear smbios_type4_count before building tables
it will help to keep type 4 tables accounting correct in case SMBIOS tables are built multiple times. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Tested-by: Fiona Ebner <f.ebner@proxmox.com> Message-Id: <20240314152302.2324164-15-imammedo@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
| -rw-r--r-- | hw/smbios/smbios.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/smbios/smbios.c b/hw/smbios/smbios.c index 0ab77b5ec8..48713aa505 100644 --- a/hw/smbios/smbios.c +++ b/hw/smbios/smbios.c @@ -1096,6 +1096,7 @@ void smbios_get_tables(MachineState *ms, ep_type == SMBIOS_ENTRY_POINT_TYPE_64); g_free(smbios_tables); + smbios_type4_count = 0; smbios_tables = g_memdup2(usr_blobs, usr_blobs_len); smbios_tables_len = usr_blobs_len; smbios_table_max = usr_table_max; |