aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/block')
-rw-r--r--drivers/block/floppy.c4
-rw-r--r--drivers/block/xen-blkfront.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c
index 3951020e494a..25e4dffa0aad 100644
--- a/drivers/block/floppy.c
+++ b/drivers/block/floppy.c
@@ -4352,7 +4352,7 @@ static int __init floppy_init(void)
4352out_unreg_platform_dev: 4352out_unreg_platform_dev:
4353 platform_device_unregister(&floppy_device[drive]); 4353 platform_device_unregister(&floppy_device[drive]);
4354out_flush_work: 4354out_flush_work:
4355 flush_scheduled_work(); 4355 flush_work_sync(&floppy_work);
4356 if (atomic_read(&usage_count)) 4356 if (atomic_read(&usage_count))
4357 floppy_release_irq_and_dma(); 4357 floppy_release_irq_and_dma();
4358out_unreg_region: 4358out_unreg_region:
@@ -4422,7 +4422,7 @@ static int floppy_grab_irq_and_dma(void)
4422 * We might have scheduled a free_irq(), wait it to 4422 * We might have scheduled a free_irq(), wait it to
4423 * drain first: 4423 * drain first:
4424 */ 4424 */
4425 flush_scheduled_work(); 4425 flush_work_sync(&floppy_work);
4426 4426
4427 if (fd_request_irq()) { 4427 if (fd_request_irq()) {
4428 DPRINT("Unable to grab IRQ%d for the floppy driver\n", 4428 DPRINT("Unable to grab IRQ%d for the floppy driver\n",
diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c
index 657873e4328d..d7aa39e349a6 100644
--- a/drivers/block/xen-blkfront.c
+++ b/drivers/block/xen-blkfront.c
@@ -547,7 +547,7 @@ static void xlvbd_release_gendisk(struct blkfront_info *info)
547 spin_unlock_irqrestore(&blkif_io_lock, flags); 547 spin_unlock_irqrestore(&blkif_io_lock, flags);
548 548
549 /* Flush gnttab callback work. Must be done with no locks held. */ 549 /* Flush gnttab callback work. Must be done with no locks held. */
550 flush_scheduled_work(); 550 flush_work_sync(&info->work);
551 551
552 del_gendisk(info->gd); 552 del_gendisk(info->gd);
553 553
@@ -596,7 +596,7 @@ static void blkif_free(struct blkfront_info *info, int suspend)
596 spin_unlock_irq(&blkif_io_lock); 596 spin_unlock_irq(&blkif_io_lock);
597 597
598 /* Flush gnttab callback work. Must be done with no locks held. */ 598 /* Flush gnttab callback work. Must be done with no locks held. */
599 flush_scheduled_work(); 599 flush_work_sync(&info->work);
600 600
601 /* Free resources associated with old device channel. */ 601 /* Free resources associated with old device channel. */
602 if (info->ring_ref != GRANT_INVALID_REF) { 602 if (info->ring_ref != GRANT_INVALID_REF) {