diff options
author | Lu Hongfei <luhongfei@vivo.com> | 2023-07-07 19:59:07 +0800 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2023-08-27 11:27:12 -0400 |
commit | 79ebf48c44b5ba05a98af23f8830883daf36f4d3 (patch) | |
tree | e12b8145cd448760f7f4cc047c1459128252a672 /fs/ext4 | |
parent | 89cadf6e22a958014d09c901caf0cd2105780dbe (diff) |
ext4: use sbi instead of EXT4_SB(sb) in ext4_mb_new_blocks_simple()
Signed-off-by: Lu Hongfei <luhongfei@vivo.com>
Link: https://lore.kernel.org/r/20230707115907.26637-1-luhongfei@vivo.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/mballoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 96068d687d9d..a807e8bf8664 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -6092,7 +6092,7 @@ ext4_mb_new_blocks_simple(struct ext4_allocation_request *ar, int *errp) ext4_grpblk_t max = EXT4_CLUSTERS_PER_GROUP(sb); ext4_grpblk_t i = 0; ext4_fsblk_t goal, block; - struct ext4_super_block *es = EXT4_SB(sb)->s_es; + struct ext4_super_block *es = sbi->s_es; goal = ar->goal; if (goal < le32_to_cpu(es->s_first_data_block) || |