Commit a533f158 authored by Chen Yu's avatar Chen Yu Committed by Greg Kroah-Hartman

ACPI: Using correct irq when waiting for events

commit efb1cf7d upstream.

When the system is waiting for GPE/fixed event handler to finish,
it uses acpi_gbl_FADT.sci_interrupt directly as the IRQ number.
However, the remapped IRQ returned by acpi_gsi_to_irq() should be
passed to synchronize_hardirq() instead of it.
Acked-by: default avatarLv Zheng <lv.zheng@intel.com>
Signed-off-by: default avatarChen Yu <yu.c.chen@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f2c343a3
...@@ -1183,8 +1183,8 @@ void acpi_os_wait_events_complete(void) ...@@ -1183,8 +1183,8 @@ void acpi_os_wait_events_complete(void)
* Make sure the GPE handler or the fixed event handler is not used * Make sure the GPE handler or the fixed event handler is not used
* on another CPU after removal. * on another CPU after removal.
*/ */
if (acpi_irq_handler) if (acpi_sci_irq_valid())
synchronize_hardirq(acpi_gbl_FADT.sci_interrupt); synchronize_hardirq(acpi_sci_irq);
flush_workqueue(kacpid_wq); flush_workqueue(kacpid_wq);
flush_workqueue(kacpi_notify_wq); flush_workqueue(kacpi_notify_wq);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment