[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 18/24] smbios: extend smbios-entry-point-type with 'auto' value
From: |
Michael S. Tsirkin |
Subject: |
[PULL 18/24] smbios: extend smbios-entry-point-type with 'auto' value |
Date: |
Mon, 18 Mar 2024 12:16:35 -0400 |
From: Igor Mammedov <imammedo@redhat.com>
later patches will use it to pick SMBIOS version at runtime
depending on configuration.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Ani Sinha <anisinha@redhat.com>
Tested-by: Fiona Ebner <f.ebner@proxmox.com>
Message-Id: <20240314152302.2324164-16-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
qapi/machine.json | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/qapi/machine.json b/qapi/machine.json
index bb5a178909..0840c91e70 100644
--- a/qapi/machine.json
+++ b/qapi/machine.json
@@ -1797,10 +1797,13 @@
#
# @64: SMBIOS version 3.0 (64-bit) Entry Point
#
+# @auto: Either 2.x or 3.x SMBIOS version, 2.x if configuration can be
+# described by it and 3.x otherwise (since: 9.0)
+#
# Since: 7.0
##
{ 'enum': 'SmbiosEntryPointType',
- 'data': [ '32', '64' ] }
+ 'data': [ '32', '64', 'auto' ] }
##
# @MemorySizeConfiguration:
--
MST
- [PULL 07/24] smbios: cleanup smbios_get_tables() from legacy handling, (continued)
- [PULL 07/24] smbios: cleanup smbios_get_tables() from legacy handling, Michael S. Tsirkin, 2024/03/18
- [PULL 08/24] smbios: get rid of smbios_smp_sockets global, Michael S. Tsirkin, 2024/03/18
- [PULL 10/24] smbios: avoid mangling user provided tables, Michael S. Tsirkin, 2024/03/18
- [PULL 11/24] smbios: don't check type4 structures in legacy mode, Michael S. Tsirkin, 2024/03/18
- [PULL 09/24] smbios: get rid of smbios_legacy global, Michael S. Tsirkin, 2024/03/18
- [PULL 12/24] smbios: add smbios_add_usr_blob_size() helper, Michael S. Tsirkin, 2024/03/18
- [PULL 13/24] smbios: rename/expose structures/bitmaps used by both legacy and modern code, Michael S. Tsirkin, 2024/03/18
- [PULL 14/24] smbios: build legacy mode code only for 'pc' machine, Michael S. Tsirkin, 2024/03/18
- [PULL 15/24] smbios: handle errors consistently, Michael S. Tsirkin, 2024/03/18
- [PULL 16/24] smbios: get rid of global smbios_ep_type, Michael S. Tsirkin, 2024/03/18
- [PULL 18/24] smbios: extend smbios-entry-point-type with 'auto' value,
Michael S. Tsirkin <=
- [PULL 19/24] smbios: in case of entry point is 'auto' try to build v2 tables 1st, Michael S. Tsirkin, 2024/03/18
- [PULL 17/24] smbios: clear smbios_type4_count before building tables, Michael S. Tsirkin, 2024/03/18
- [PULL 20/24] smbios: error out when building type 4 table is not possible, Michael S. Tsirkin, 2024/03/18
- [PULL 21/24] tests: acpi/smbios: whitelist expected blobs, Michael S. Tsirkin, 2024/03/18
- [PULL 22/24] pc/q35: set SMBIOS entry point type to 'auto' by default, Michael S. Tsirkin, 2024/03/18
- [PULL 23/24] tests: acpi: update expected SSDT.dimmpxm blob, Michael S. Tsirkin, 2024/03/18
- [PULL 24/24] smbios: add extra comments to smbios_get_table_legacy(), Michael S. Tsirkin, 2024/03/18
- Re: [PULL 00/24] virtio,pc,pci: bugfixes, Peter Maydell, 2024/03/19