[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH for-4.11] libxl: fix memory map reported to PVH guests
PVH guests with 4GB of RAM or more get a memory map like the following: 0x00000000000000 - 0x000000fee00000 RAM 0x000000fee00000 - 0x00000100000000 RESERVED 0x000000fc009000 - 0x000000fc009040 ACPI 0x000000fc000000 - 0x000000fc001000 ACPI 0x000000fc001000 - 0x000000fc009000 ACPI 0x00000100000000 - 0x000001fb200400 RAM This is wrong because ACPI regions are also reported as RAM regions. The cause of this issue is not setting a big enough MMIO hole, current libxl code only takes into account the address of the local APIC page and the reserved pages in order to set the size of the MMIO hole, when it should also take into account the location of the ACPI tables. After the fix the layout reported for the same guest is: 0x00000000000000 - 0x000000fc000000 RAM 0x000000fc000000 - 0x00000100000000 RESERVED 0x000000fc009000 - 0x000000fc009040 ACPI 0x000000fc000000 - 0x000000fc001000 ACPI 0x000000fc001000 - 0x000000fc009000 ACPI 0x00000100000000 - 0x000001fe000400 RAM Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> --- Cc: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Cc: Wei Liu <wei.liu2@xxxxxxxxxx> Cc: Juergen Gross <jgross@xxxxxxxx> --- tools/libxl/libxl_arch.h | 1 + tools/libxl/libxl_dom.c | 20 +++++++++++--------- tools/libxl/libxl_x86_acpi.c | 1 - 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/tools/libxl/libxl_arch.h b/tools/libxl/libxl_arch.h index 318c111bb4..74a5af3cf3 100644 --- a/tools/libxl/libxl_arch.h +++ b/tools/libxl/libxl_arch.h @@ -76,6 +76,7 @@ int libxl__arch_extra_memory(libxl__gc *gc, #if defined(__i386__) || defined(__x86_64__) #define LAPIC_BASE_ADDRESS 0xfee00000 +#define ACPI_INFO_PHYSICAL_ADDRESS 0xfc000000 int libxl__dom_load_acpi(libxl__gc *gc, const libxl_domain_build_info *b_info, diff --git a/tools/libxl/libxl_dom.c b/tools/libxl/libxl_dom.c index 8c3607b0f5..f0fd5fd3a3 100644 --- a/tools/libxl/libxl_dom.c +++ b/tools/libxl/libxl_dom.c @@ -1229,15 +1229,17 @@ int libxl__build_hvm(libxl__gc *gc, uint32_t domid, dom->mmio_size = HVM_BELOW_4G_MMIO_LENGTH; else if (dom->mmio_size == 0 && !device_model) { #if defined(__i386__) || defined(__x86_64__) - if (libxl_defbool_val(info->apic)) { - /* Make sure LAPIC_BASE_ADDRESS is below special pages */ - assert(((((X86_HVM_END_SPECIAL_REGION - X86_HVM_NR_SPECIAL_PAGES) - << XC_PAGE_SHIFT) - LAPIC_BASE_ADDRESS)) >= XC_PAGE_SIZE); - dom->mmio_size = GB(4) - LAPIC_BASE_ADDRESS; - } else - dom->mmio_size = GB(4) - - ((X86_HVM_END_SPECIAL_REGION - X86_HVM_NR_SPECIAL_PAGES) - << XC_PAGE_SHIFT); + /* + * Make sure the local APIC page, the ACPI tables and the special pages + * are inside the MMIO hole. + */ + xen_paddr_t start = + (X86_HVM_END_SPECIAL_REGION - X86_HVM_NR_SPECIAL_PAGES) << + XC_PAGE_SHIFT; + + start = min_t(xen_paddr_t, start, LAPIC_BASE_ADDRESS); + start = min_t(xen_paddr_t, start, ACPI_INFO_PHYSICAL_ADDRESS); + dom->mmio_size = GB(4) - start; #else assert(1); #endif diff --git a/tools/libxl/libxl_x86_acpi.c b/tools/libxl/libxl_x86_acpi.c index 143ce66644..ed6610c84e 100644 --- a/tools/libxl/libxl_x86_acpi.c +++ b/tools/libxl/libxl_x86_acpi.c @@ -22,7 +22,6 @@ /* Number of pages holding ACPI tables */ #define NUM_ACPI_PAGES 16 -#define ACPI_INFO_PHYSICAL_ADDRESS 0xfc000000 struct libxl_acpi_ctxt { struct acpi_ctxt c; -- 2.17.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |