diff options
author | Michael S. Tsirkin | 2014-08-20 21:58:12 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2014-08-25 00:16:06 +0200 |
commit | 927766c7d34275ecf586020cc5305e377cc4af10 (patch) | |
tree | 645c90a99337caed2c92fd4756a0dc24c97a9a8e /include | |
parent | pcihp: fix possible array out of bounds (diff) | |
download | qemu-927766c7d34275ecf586020cc5305e377cc4af10.tar.gz qemu-927766c7d34275ecf586020cc5305e377cc4af10.tar.xz qemu-927766c7d34275ecf586020cc5305e377cc4af10.zip |
pc: reserve more memory for ACPI for new machine types
commit 868270f23d8db2cce83e4f082fe75e8625a5fbf9
acpi-build: tweak acpi migration limits
broke kernel loading with -kernel/-initrd: it doubled
the size of ACPI tables but did not reserve
enough memory.
As a result, issues on boot and halt are observed.
Fix this up by doubling reserved memory for new machine types.
Cc: qemu-stable@nongnu.org
Reported-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
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 0fca9e3fd7..a39cb42290 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -176,6 +176,8 @@ void pc_acpi_init(const char *default_dsdt); PcGuestInfo *pc_guest_info_init(ram_addr_t below_4g_mem_size, ram_addr_t above_4g_mem_size); +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" |