On Wed, 06 Apr, at 11:30:29PM, Lukas Wunner wrote: > > More specifically, arch/x86/platform/efi/quirks.c:efi_free_boot_services() > makes EFI boot services memory available to the page allocator and this > is called near the end of init/main.c:start_kernel(). *Afterwards*, the > initcalls are executed via rest_init() -> kernel_init() -> > kernel_init_freeable() -> do_basic_setup() -> do_initcalls(). In particular, > PCI header fixups are executed in the subsys_initcall acpi_init(). > > Some of the possible solutions are: > > (1) Delay efi_free_boot_services() further, e.g. until late_initcall. I'd prefer not to do this because boot services regions can account for a large amount of memory (multiple gigabytes). > (2) Find out exactly which EFI boot services area is used for DMA and > amend arch/x86/platform/efi/quirks.c:efi_apply_memmap_quirks() to > assign that area a different type if dmi_match(DMI_SYS_VENDOR, > "Apple Inc."). That way it's not freed by efi_free_boot_services(). > Add a late_initcall which calls free_bootmem() for that area. If it is possible to find out which boot services region is the problematic one, this would be the best solution. If there's any way to tie it into the PCI quirk, that would be even better so we don't need to maintain the blacklist in two places. -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html