Message ID | 1388707565-16535-27-git-send-email-yinghai@kernel.org (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c index b3171f3..559e762 100644 --- a/drivers/acpi/processor_core.c +++ b/drivers/acpi/processor_core.c @@ -153,6 +153,8 @@ static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id) header = (struct acpi_subtable_header *)obj->buffer.pointer; if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) { map_lapic_id(header, acpi_id, &apic_id); + } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) { + map_x2apic_id(header, type, acpi_id, &apic_id); } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) { map_lsapic_id(header, type, acpi_id, &apic_id); }
Now we have map_madt_entry/MADT to handle x2apic, but does not do that with map_mat_entry _MAT. For hotplug on system with x2apic only support, we need to add support for x2apic map in _MAT. Signed-off-by: Yinghai Lu <yinghai@kernel.org> --- drivers/acpi/processor_core.c | 2 ++ 1 file changed, 2 insertions(+)