diff options
author | Wei Liu <wei.liu2@citrix.com> | 2016-11-01 17:44:16 +0000 |
---|---|---|
committer | Stefano Stabellini <sstabellini@kernel.org> | 2016-11-02 12:26:12 -0700 |
commit | 021746c131cdfeab9d82ff918795a9f18d20d7ae (patch) | |
tree | 1c214de35643642fee2682fc697060f2ec9796d1 /include | |
parent | b5863634181a655bd2201cf51a363ac94a43f145 (diff) | |
download | qemu-021746c131cdfeab9d82ff918795a9f18d20d7ae.zip qemu-021746c131cdfeab9d82ff918795a9f18d20d7ae.tar.gz qemu-021746c131cdfeab9d82ff918795a9f18d20d7ae.tar.bz2 |
PCMachineState: introduce acpi_build_enabled field
Introduce this field to control whether ACPI build is enabled by a
particular machine or accelerator.
It defaults to true if the machine itself supports ACPI build. Xen
accelerator will disable it because Xen is in charge of building ACPI
tables for the guest.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: Stefano Stabellini <sstabellini@kernel.org>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Tested-by: Sander Eikelenboom <linux@eikelenboom.it>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/i386/pc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 98dc772..8eb517f 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -62,6 +62,8 @@ struct PCMachineState { AcpiNVDIMMState acpi_nvdimm_state; + bool acpi_build_enabled; + /* RAM information (sizes, addresses, configuration): */ ram_addr_t below_4g_mem_size, above_4g_mem_size; |