mirror of https://gitee.com/openkylin/linux.git
ACPI: NUMA: HMAT: Register HMAT at device_initcall level
In preparation for registering device-dax instances for accessing EFI specific-purpose memory, arrange for the HMAT registration to occur later in the init process. Critically HMAT initialization needs to occur after e820__reserve_resources_late() which is the point at which the iomem resource tree is populated with "Application Reserved" (IORES_DESC_APPLICATION_RESERVED). e820__reserve_resources_late() happens at subsys_initcall time. Reviewed-by: Dave Hansen <dave.hansen@linux.intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com> Acked-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
a6c7f4c6ae
commit
0f847f8c08
|
@ -748,4 +748,4 @@ static __init int hmat_init(void)
|
|||
acpi_put_table(tbl);
|
||||
return 0;
|
||||
}
|
||||
subsys_initcall(hmat_init);
|
||||
device_initcall(hmat_init);
|
||||
|
|
Loading…
Reference in New Issue