From: Christoph Hellwig Date: Mon, 18 Oct 2021 10:11:26 +0000 (+0200) Subject: ext4: use sb_bdev_nr_blocks X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5513b241b2ef903b36c2ff74976618885fc5a318;p=linux.git ext4: use sb_bdev_nr_blocks Use the sb_bdev_nr_blocks helper instead of open coding it. Signed-off-by: Christoph Hellwig Reviewed-by: Kees Cook Reviewed-by: Jan Kara Reviewed-by: Chaitanya Kulkarni Acked-by: Theodore Ts'o Link: https://lore.kernel.org/r/20211018101130.1838532-27-hch@lst.de Signed-off-by: Jens Axboe --- diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 88d5d274a8684..29f38251013e7 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -4474,7 +4474,7 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) goto cantfind_ext4; /* check blocks count against device size */ - blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits; + blocks_count = sb_bdev_nr_blocks(sb); if (blocks_count && ext4_blocks_count(es) > blocks_count) { ext4_msg(sb, KERN_WARNING, "bad geometry: block count %llu " "exceeds size of device (%llu blocks)",