aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorKenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>2011-11-07 06:55:46 -0500
committerJesse Barnes <jbarnes@virtuousgeek.org>2012-01-06 15:10:27 -0500
commit863b7eb583704346d64a08b0e723635da692959e (patch)
tree8001a85d37812ee53ad2850bc003085afe997ed4 /drivers/pci
parent10f6dc7eede9a8895626e9c1b4f2c3b75fbf2850 (diff)
PCI: pciehp: Fix wrong workqueue cleanup
Fix improper workqueue cleanup. In the current pciehp, pcied_cleanup() calls destroy_workqueue() before calling pcie_port_service_unregister(). This causes kernel oops because flush_workqueue() is called in the pcie_port_service_unregister() code path after the workqueue was destroyed. So pcied_cleanup() must call pcie_port_service_unregister() first before calling destroy_workqueue(). Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/hotplug/pciehp_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/pciehp_core.c b/drivers/pci/hotplug/pciehp_core.c
index 7ac8358df8fd..a13ad1308adb 100644
--- a/drivers/pci/hotplug/pciehp_core.c
+++ b/drivers/pci/hotplug/pciehp_core.c
@@ -366,9 +366,9 @@ static int __init pcied_init(void)
366static void __exit pcied_cleanup(void) 366static void __exit pcied_cleanup(void)
367{ 367{
368 dbg("unload_pciehpd()\n"); 368 dbg("unload_pciehpd()\n");
369 pcie_port_service_unregister(&hpdriver_portdrv);
369 destroy_workqueue(pciehp_ordered_wq); 370 destroy_workqueue(pciehp_ordered_wq);
370 destroy_workqueue(pciehp_wq); 371 destroy_workqueue(pciehp_wq);
371 pcie_port_service_unregister(&hpdriver_portdrv);
372 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n"); 372 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
373} 373}
374 374