[PATCH 3.16 096/178] ACPI: Do not create a platform_device for IOAPIC/IOxAPIC
From: Ben Hutchings <hidden>
Date: 2017-07-16 14:04:57
Also in:
lkml
From: Ben Hutchings <hidden>
Date: 2017-07-16 14:04:57
Also in:
lkml
3.16.46-rc1 review patch. If anyone has any objections, please let me know. ------------------ From: Joerg Roedel <redacted> commit 08f63d97749185fab942a3a47ed80f5bd89b8b7d upstream. No platform-device is required for IO(x)APICs, so don't even create them. [ rjw: This fixes a problem with leaking platform device objects after IOAPIC/IOxAPIC hot-removal events.] Signed-off-by: Joerg Roedel <redacted> Signed-off-by: Rafael J. Wysocki <redacted> Signed-off-by: Ben Hutchings <redacted> --- drivers/acpi/acpi_platform.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-)
--- a/drivers/acpi/acpi_platform.c
+++ b/drivers/acpi/acpi_platform.c@@ -23,9 +23,11 @@ ACPI_MODULE_NAME("platform"); static const struct acpi_device_id forbidden_id_list[] = { - {"PNP0000", 0}, /* PIC */ - {"PNP0100", 0}, /* Timer */ - {"PNP0200", 0}, /* AT DMA Controller */ + {"PNP0000", 0}, /* PIC */ + {"PNP0100", 0}, /* Timer */ + {"PNP0200", 0}, /* AT DMA Controller */ + {"ACPI0009", 0}, /* IOxAPIC */ + {"ACPI000A", 0}, /* IOAPIC */ {"", 0}, };