diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2014-08-20 21:58:12 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-08-25 00:16:06 +0200 |
commit | 927766c7d34275ecf586020cc5305e377cc4af10 (patch) | |
tree | 645c90a99337caed2c92fd4756a0dc24c97a9a8e /hw/i386/pc_piix.c | |
parent | fa365d7cd11185237471823a5a33d36765454e16 (diff) | |
download | qemu-927766c7d34275ecf586020cc5305e377cc4af10.zip qemu-927766c7d34275ecf586020cc5305e377cc4af10.tar.gz qemu-927766c7d34275ecf586020cc5305e377cc4af10.tar.bz2 |
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 'hw/i386/pc_piix.c')
-rw-r--r-- | hw/i386/pc_piix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index 47ac1b5..103d756 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -323,6 +323,7 @@ static void pc_compat_2_0(MachineState *machine) legacy_acpi_table_size = 6652; smbios_legacy_mode = true; has_reserved_memory = false; + pc_set_legacy_acpi_data_size(); } static void pc_compat_1_7(MachineState *machine) |