From: Boris Ostrovsky Date: Thu, 2 Feb 2017 11:51:39 +0000 (+0100) Subject: acpi: switch to dynamic mapping at SYS_STATE_boot X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~2865 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1a6e3220cc19b8705c27ca90dbc615270237f372;p=xen.git acpi: switch to dynamic mapping at SYS_STATE_boot We can switch ACPI from using fixmap to dynamic mapping as soon as the system enters SYS_STATE_boot. This will allow us, for example, to map MADT on systems with large number of processors where the table might not fit into NUM_FIXMAP_ACPI_PAGES (currently set to 4). To avoid having a window between system entering SYS_STATE_boot and vmap area being initialized move vm_init() a little higher. Signed-off-by: Boris Ostrovsky Reviewed-by: Jan Beulich --- diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index 0ccef1dcd7..ccfd6dd885 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -1376,9 +1376,10 @@ void __init noreturn __start_xen(unsigned long mbi_p) else end_boot_allocator(); + vm_init(); + system_state = SYS_STATE_boot; - vm_init(); console_init_ring(); vesa_init(); diff --git a/xen/drivers/acpi/osl.c b/xen/drivers/acpi/osl.c index 3616dfdbc0..7199047198 100644 --- a/xen/drivers/acpi/osl.c +++ b/xen/drivers/acpi/osl.c @@ -89,7 +89,7 @@ acpi_physical_address __init acpi_os_get_root_pointer(void) void __iomem * acpi_os_map_memory(acpi_physical_address phys, acpi_size size) { - if (system_state >= SYS_STATE_active) { + if (system_state >= SYS_STATE_boot) { mfn_t mfn = _mfn(PFN_DOWN(phys)); unsigned int offs = phys & (PAGE_SIZE - 1); @@ -104,7 +104,7 @@ acpi_os_map_memory(acpi_physical_address phys, acpi_size size) void acpi_os_unmap_memory(void __iomem * virt, acpi_size size) { - if (system_state >= SYS_STATE_active) + if (system_state >= SYS_STATE_boot) vunmap((void *)((unsigned long)virt & PAGE_MASK)); }