提交 b86058f9 编写于 作者: C Christoph Hellwig 提交者: Jens Axboe

fs: use bdev_nr_bytes instead of open coding it in blkdev_max_block

Use the proper helper to read the block device size.
Signed-off-by: NChristoph Hellwig <hch@lst.de>
Reviewed-by: NKees Cook <keescook@chromium.org>
Reviewed-by: NJan Kara <jack@suse.cz>
Reviewed-by: NChaitanya Kulkarni <kch@nvidia.com>
Link: https://lore.kernel.org/r/20211018101130.1838532-10-hch@lst.deSigned-off-by: NJens Axboe <axboe@kernel.dk>
上级 64f0f426
...@@ -878,7 +878,7 @@ link_dev_buffers(struct page *page, struct buffer_head *head) ...@@ -878,7 +878,7 @@ link_dev_buffers(struct page *page, struct buffer_head *head)
static sector_t blkdev_max_block(struct block_device *bdev, unsigned int size) static sector_t blkdev_max_block(struct block_device *bdev, unsigned int size)
{ {
sector_t retval = ~((sector_t)0); sector_t retval = ~((sector_t)0);
loff_t sz = i_size_read(bdev->bd_inode); loff_t sz = bdev_nr_bytes(bdev);
if (sz) { if (sz) {
unsigned int sizebits = blksize_bits(size); unsigned int sizebits = blksize_bits(size);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册