From: Jan Kiszka Date: Wed, 30 Jul 2014 08:46:10 +0000 (+0200) Subject: configs: Adjust qemu-vm regarding ACPI region size X-Git-Url: https://rtime.felk.cvut.cz/gitweb/jailhouse.git/commitdiff_plain/b37bccd43265d76b6f3577265249a5ccba2cf5ea configs: Adjust qemu-vm regarding ACPI region size QEMU 2.1 faced another change in the ACPI region size. Account for it. Signed-off-by: Jan Kiszka --- diff --git a/configs/qemu-vm.c b/configs/qemu-vm.c index 54f23b9..2db694f 100644 --- a/configs/qemu-vm.c +++ b/configs/qemu-vm.c @@ -33,11 +33,11 @@ struct { .header = { .hypervisor_memory = { .phys_start = 0x3c000000, - .size = 0x4000000 - 0x4000, + .size = 0x4000000 - 0x30000, }, .config_memory = { - .phys_start = 0x3fffc000, - .size = 0x4000, + .phys_start = 0x3ffdf000, + .size = 0x30000, }, .platform_info.x86 = { .pm_timer_address = 0x608, @@ -67,9 +67,9 @@ struct { JAILHOUSE_MEM_EXECUTE | JAILHOUSE_MEM_DMA, }, /* ACPI */ { - .phys_start = 0x3fffc000, - .virt_start = 0x3fffc000, - .size = 0x4000, + .phys_start = 0x3ffdf000, + .virt_start = 0x3ffdf000, + .size = 0x30000, .flags = JAILHOUSE_MEM_READ, }, /* PCI */ {