diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2015-12-01 20:58:05 -0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-12-22 17:45:12 +0200 |
commit | cd4040ec1870f8ec49ec995d89d4862e0b6021b3 (patch) | |
tree | 9a6837008c608653d38bf10876ec6897d8f99a66 /include | |
parent | 2b0ddf6612fe270a6db0394da6cf4d44ff48b3f5 (diff) | |
download | qemu-cd4040ec1870f8ec49ec995d89d4862e0b6021b3.zip qemu-cd4040ec1870f8ec49ec995d89d4862e0b6021b3.tar.gz qemu-cd4040ec1870f8ec49ec995d89d4862e0b6021b3.tar.bz2 |
pc: Move acpi_data_size global to PCMachineClass
This way we don't need code in pc_compat_*() functions to set the legacy
acpi_data_size value.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/i386/pc.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index f858b8b..3edae2b 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -90,6 +90,10 @@ struct PCMachineClass { bool has_reserved_memory; bool kvmclock_enabled; int legacy_acpi_table_size; + /* Leave a chunk of memory at the top of RAM for the BIOS ACPI tables + * and other BIOS datastructures. + */ + unsigned acpi_data_size; }; #define TYPE_PC_MACHINE "generic-pc-machine" @@ -201,8 +205,6 @@ void pc_acpi_init(const char *default_dsdt); PcGuestInfo *pc_guest_info_init(PCMachineState *pcms); -void pc_set_legacy_acpi_data_size(void); - #define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start" #define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end" #define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start" |