aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/megaraid
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2011-01-24 08:57:28 -0500
committerJames Bottomley <James.Bottomley@suse.de>2011-02-12 11:31:02 -0500
commita684b8da35a429a246ec2a91e2742bdff5209709 (patch)
tree656a47c18b4c8d8f138175702a33846a5d3194e2 /drivers/scsi/megaraid
parent75c65a5edaa8b815c1428314eaf696788f1ebbdb (diff)
[SCSI] remove flush_scheduled_work() usages
Simple conversions to drop flush_scheduled_work() usages in drivers/scsi. More involved ones will be done in separate patches. * NCR5380, megaraid_sas: cancel_delayed_work() + flush_scheduled_work() -> cancel_delayed_work_sync(). * mpt2sas_scsih: drop unnecessary flush_scheduled_work(). * arcmsr_hba, ipr, pmcraid: flush the used work explicitly instead of using flush_scheduled_work(). Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/megaraid')
-rw-r--r--drivers/scsi/megaraid/megaraid_sas_base.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/scsi/megaraid/megaraid_sas_base.c b/drivers/scsi/megaraid/megaraid_sas_base.c
index 5d6d07bd1cd0..e7c9b41def7b 100644
--- a/drivers/scsi/megaraid/megaraid_sas_base.c
+++ b/drivers/scsi/megaraid/megaraid_sas_base.c
@@ -4242,9 +4242,8 @@ megasas_suspend(struct pci_dev *pdev, pm_message_t state)
4242 /* cancel the delayed work if this work still in queue */ 4242 /* cancel the delayed work if this work still in queue */
4243 if (instance->ev != NULL) { 4243 if (instance->ev != NULL) {
4244 struct megasas_aen_event *ev = instance->ev; 4244 struct megasas_aen_event *ev = instance->ev;
4245 cancel_delayed_work( 4245 cancel_delayed_work_sync(
4246 (struct delayed_work *)&ev->hotplug_work); 4246 (struct delayed_work *)&ev->hotplug_work);
4247 flush_scheduled_work();
4248 instance->ev = NULL; 4247 instance->ev = NULL;
4249 } 4248 }
4250 4249
@@ -4417,9 +4416,8 @@ static void __devexit megasas_detach_one(struct pci_dev *pdev)
4417 /* cancel the delayed work if this work still in queue*/ 4416 /* cancel the delayed work if this work still in queue*/
4418 if (instance->ev != NULL) { 4417 if (instance->ev != NULL) {
4419 struct megasas_aen_event *ev = instance->ev; 4418 struct megasas_aen_event *ev = instance->ev;
4420 cancel_delayed_work( 4419 cancel_delayed_work_sync(
4421 (struct delayed_work *)&ev->hotplug_work); 4420 (struct delayed_work *)&ev->hotplug_work);
4422 flush_scheduled_work();
4423 instance->ev = NULL; 4421 instance->ev = NULL;
4424 } 4422 }
4425 4423