ext4: remove useless local variable 'blocksize'
authorJason Yan <yanaijie@huawei.com>
Fri, 16 Sep 2022 14:15:26 +0000 (22:15 +0800)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 1 Oct 2022 03:46:54 +0000 (23:46 -0400)
commitc8267c51425abd4f75d0ad07c4d3ee748908e2f8
tree2da50135cddbb655cef8f8034031a10bb6b160a4
parenta7a79c292ac3776bed20d575a96194181a397125
ext4: remove useless local variable 'blocksize'

Since sb->s_blocksize is now initialized at the very beginning, the
local variable 'blocksize' in __ext4_fill_super() is not needed now.
Remove it and use sb->s_blocksize instead.

Signed-off-by: Jason Yan <yanaijie@huawei.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20220916141527.1012715-16-yanaijie@huawei.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/super.c