aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBen Warren <ben@skyportsystems.com>2017-02-16 15:15:35 -0800
committerMichael S. Tsirkin <mst@redhat.com>2017-03-02 07:14:26 +0200
commitc7809e6cd76dec99baf82100ff2041833df5146f (patch)
treeb3a53d758856ae28845a320f7b8bdc260ee332d1 /include
parent20f5d14dc9e88339f5a5b59fb8696562022e4462 (diff)
downloadqemu-c7809e6cd76dec99baf82100ff2041833df5146f.zip
qemu-c7809e6cd76dec99baf82100ff2041833df5146f.tar.gz
qemu-c7809e6cd76dec99baf82100ff2041833df5146f.tar.bz2
ACPI: Add vmgenid blob storage to the build tables
This allows them to be centrally initialized and destroyed The "AcpiBuildTables.vmgenid" array will be used to construct the "etc/vmgenid_guid" fw_cfg blob. Its contents will be linked into fw_cfg after being built on the pc_machine_done() -> acpi_setup() -> acpi_build() call path, and dropped without use on the subsequent, guest triggered, acpi_build_update() -> acpi_build() call path. Signed-off-by: Ben Warren <ben@skyportsystems.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Tested-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/hw/acpi/aml-build.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/acpi/aml-build.h b/include/hw/acpi/aml-build.h
index 559326c..00c21f1 100644
--- a/include/hw/acpi/aml-build.h
+++ b/include/hw/acpi/aml-build.h
@@ -210,6 +210,7 @@ struct AcpiBuildTables {
GArray *table_data;
GArray *rsdp;
GArray *tcpalog;
+ GArray *vmgenid;
BIOSLinker *linker;
} AcpiBuildTables;