diff options
author | Christoph Hellwig <hch@lst.de> | 2020-09-25 19:06:18 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-10-05 19:38:33 +0300 |
commit | 10ed16662da9e28a33b6c991c36c6b323b03dd5b (patch) | |
tree | 18e9b39f3f6eb5528a33567258782a20c96384c0 /include/linux/blkdev.h | |
parent | 155bd9d1abd60497f3e84ef3251b40209f7f7900 (diff) | |
download | linux-10ed16662da9e28a33b6c991c36c6b323b03dd5b.tar.xz |
block: add a bdget_part helper
All remaining callers of bdget() outside of fs/block_dev.c want to get a
reference to the struct block_device for a given struct hd_struct. Add
a helper just for that and then mark bdget static.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index d5a3e1a4c2f7..cf80e61b4c5e 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -2003,7 +2003,7 @@ void bd_abort_claiming(struct block_device *bdev, struct block_device *whole, void blkdev_put(struct block_device *bdev, fmode_t mode); struct block_device *I_BDEV(struct inode *inode); -struct block_device *bdget(dev_t); +struct block_device *bdget_part(struct hd_struct *part); struct block_device *bdgrab(struct block_device *bdev); void bdput(struct block_device *); |