aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/block_dev.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2020-04-14 09:28:57 +0200
committerJens Axboe <axboe@kernel.dk>2020-04-20 11:32:59 -0600
commitd46430bf5a2298f55e20f59a90ebe3545d273b2f (patch)
tree99288a751fbe2e0502be81719f4ccc3144e797c6 /fs/block_dev.c
parentblock: remove hd_struct_kill (diff)
downloadwireguard-linux-d46430bf5a2298f55e20f59a90ebe3545d273b2f.tar.xz
wireguard-linux-d46430bf5a2298f55e20f59a90ebe3545d273b2f.zip
block: remove the disk argument from blk_drop_partitions
The gendisk can be trivially deducted from the block_device. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/block_dev.c')
-rw-r--r--fs/block_dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/block_dev.c b/fs/block_dev.c
index 52b6f646cdbd..9c8de54fa0c9 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -1517,7 +1517,7 @@ int bdev_disk_changed(struct block_device *bdev, bool invalidate)
lockdep_assert_held(&bdev->bd_mutex);
rescan:
- ret = blk_drop_partitions(disk, bdev);
+ ret = blk_drop_partitions(bdev);
if (ret)
return ret;