aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Hellwig <[email protected]>2021-10-18 12:11:24 +0200
committerJens Axboe <[email protected]>2021-10-18 14:43:23 -0600
commit2a93ad8fcb377b9d6e05947de161e146f5be4de9 (patch)
treeb42bd7ccdcb400dad7f1bbfaea805c90330bf112
parentbe9a7b3e15916fd3710bfd383e8ecffc0416e919 (diff)
block: use bdev_nr_bytes instead of open coding it in blkdev_fallocate
Use the proper helper to read the block device size. Signed-off-by: Christoph Hellwig <[email protected]> Reviewed-by: Kees Cook <[email protected]> Reviewed-by: Jan Kara <[email protected]> Reviewed-by: Chaitanya Kulkarni <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r--block/fops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/fops.c b/block/fops.c
index 2c43e493e37c..2ae8a7bd2b84 100644
--- a/block/fops.c
+++ b/block/fops.c
@@ -535,7 +535,7 @@ static long blkdev_fallocate(struct file *file, int mode, loff_t start,
return -EOPNOTSUPP;
/* Don't go off the end of the device. */
- isize = i_size_read(bdev->bd_inode);
+ isize = bdev_nr_bytes(bdev);
if (start >= isize)
return -EINVAL;
if (end >= isize) {