diff options
author | Tejun Heo <tj@kernel.org> | 2011-01-24 09:43:03 -0500 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-02-17 16:18:45 -0500 |
commit | db2e2e6ee9ee9ce93b04c6975fdfef304771d6ad (patch) | |
tree | 7552b1e19f5457d07dc9c209b8ba305a3bfa4c78 /drivers/pci/xen-pcifront.c | |
parent | 85e2efbb1db9a18d218006706d6e4fbeb0216213 (diff) |
xen-pcifront: don't use flush_scheduled_work()
flush_scheduled_work() is scheduled for deprecation. Cancel ->op_work
directly instead.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Ryan Wilson <hap9@epoch.ncsc.mil>
Cc: Jan Beulich <JBeulich@novell.com>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/pci/xen-pcifront.c')
-rw-r--r-- | drivers/pci/xen-pcifront.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/pci/xen-pcifront.c b/drivers/pci/xen-pcifront.c index 3a5a6fcc0ead..030ce3743439 100644 --- a/drivers/pci/xen-pcifront.c +++ b/drivers/pci/xen-pcifront.c | |||
@@ -733,8 +733,7 @@ static void free_pdev(struct pcifront_device *pdev) | |||
733 | 733 | ||
734 | pcifront_free_roots(pdev); | 734 | pcifront_free_roots(pdev); |
735 | 735 | ||
736 | /*For PCIE_AER error handling job*/ | 736 | cancel_work_sync(&pdev->op_work); |
737 | flush_scheduled_work(); | ||
738 | 737 | ||
739 | if (pdev->irq >= 0) | 738 | if (pdev->irq >= 0) |
740 | unbind_from_irqhandler(pdev->irq, pdev); | 739 | unbind_from_irqhandler(pdev->irq, pdev); |