ACPI / SBS: Fix rare oops when removing modules
authorRonald Tschalär <ronald@innovation.ch>
Mon, 1 Oct 2018 02:53:13 +0000 (19:53 -0700)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 8 Oct 2018 06:41:35 +0000 (08:41 +0200)
There was a small race when removing the sbshc module where
smbus_alarm() had queued acpi_smbus_callback() for deferred execution
but it hadn't been run yet, so that when it did run hc had been freed
and the module unloaded, resulting in an invalid paging request.

A similar race existed when removing the sbs module with regards to
acpi_sbs_callback() (which is called from acpi_smbus_callback()).

We therefore need to ensure no callbacks are pending or executing before
the cleanups are done and the modules are removed.

Signed-off-by: Ronald Tschalär <ronald@innovation.ch>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/osl.c
drivers/acpi/sbshc.c

index 8df9abfa947b0dca4719c674fd645d187ade242d..9d139727f1642ebecc019b493905fb90c277fdb8 100644 (file)
@@ -1129,6 +1129,7 @@ void acpi_os_wait_events_complete(void)
        flush_workqueue(kacpid_wq);
        flush_workqueue(kacpi_notify_wq);
 }
+EXPORT_SYMBOL(acpi_os_wait_events_complete);
 
 struct acpi_hp_work {
        struct work_struct work;
index 7a3431018e0ab4ce96dc055abf31444e498b04bb..5008ead4609a46edafe73b9481b9912c71efc464 100644 (file)
@@ -196,6 +196,7 @@ int acpi_smbus_unregister_callback(struct acpi_smb_hc *hc)
        hc->callback = NULL;
        hc->context = NULL;
        mutex_unlock(&hc->lock);
+       acpi_os_wait_events_complete();
        return 0;
 }
 
@@ -292,6 +293,7 @@ static int acpi_smbus_hc_remove(struct acpi_device *device)
 
        hc = acpi_driver_data(device);
        acpi_ec_remove_query_handler(hc->ec, hc->query_bit);
+       acpi_os_wait_events_complete();
        kfree(hc);
        device->driver_data = NULL;
        return 0;