OSDN Git Service

block: simplify block device syncing in bdev_del_partition
authorChristoph Hellwig <hch@lst.de>
Tue, 14 Apr 2020 07:29:00 +0000 (09:29 +0200)
committerJens Axboe <axboe@kernel.dk>
Mon, 20 Apr 2020 17:32:59 +0000 (11:32 -0600)
We just checked a little above that the block device for the partition
im busy.  That implies no file system is mounted, and thus the only
thing in fsync_bdev that actually is used is sync_blockdev.  Just call
sync_blockdev directly.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/partitions/core.c

index a94d296..c085bf8 100644 (file)
@@ -531,7 +531,7 @@ int bdev_del_partition(struct block_device *bdev, int partno)
        if (bdevp->bd_openers)
                goto out_unlock;
 
-       fsync_bdev(bdevp);
+       sync_blockdev(bdevp);
        invalidate_bdev(bdevp);
 
        mutex_lock_nested(&bdev->bd_mutex, 1);