summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Chamberlain <mcgrof@kernel.org>2024-12-17 18:02:11 -0800
committerJens Axboe <axboe@kernel.dk>2024-12-18 07:22:30 -0700
commit26fff8a4432ffd03409346b7dae1e1a2c5318b7c (patch)
tree4b7f2e0fbd8786059558f194e13bb19b25d7bb40
parentbe26ba96421ab0a8fa2055ccf7db7832a13c44d2 (diff)
downloadlwn-26fff8a4432ffd03409346b7dae1e1a2c5318b7c.tar.gz
lwn-26fff8a4432ffd03409346b7dae1e1a2c5318b7c.zip
block/bdev: use helper for max block size check
We already have a helper for checking the limits on the block size both low and high, just use that. No functional changes. Reviewed-by: John Garry <john.g.garry@oracle.com> Signed-off-by: Luis Chamberlain <mcgrof@kernel.org> Reviewed-by: Keith Busch <kbusch@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20241218020212.3657139-2-mcgrof@kernel.org Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r--block/bdev.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/block/bdev.c b/block/bdev.c
index 738e3c8457e7..9d73a8fbf7f9 100644
--- a/block/bdev.c
+++ b/block/bdev.c
@@ -155,8 +155,7 @@ int set_blocksize(struct file *file, int size)
struct inode *inode = file->f_mapping->host;
struct block_device *bdev = I_BDEV(inode);
- /* Size must be a power of two, and between 512 and PAGE_SIZE */
- if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
+ if (blk_validate_block_size(size))
return -EINVAL;
/* Size cannot be smaller than the size supported by the device */