Skip to content

Commit ff2beee

Browse files
OjaswinMtytso
authored andcommitted
ext4: convert EXT4_B2C(sbi->s_stripe) users to EXT4_NUM_B2C
Although we have checks to make sure s_stripe is a multiple of cluster size, in case we accidentally end up with a scenario where this is not the case, use EXT4_NUM_B2C() so that we don't end up with unexpected cases where EXT4_B2C(stripe) becomes 0. Also make the is_stripe_aligned check in regular_allocator a bit more robust while we are at it. This should ideally have no functional change unless we have a bug somewhere causing (stripe % cluster_size != 0) Reviewed-by: Kemeng Shi <shikemeng@huaweicloud.com> Signed-off-by: Ojaswin Mujoo <ojaswin@linux.ibm.com> Reviewed-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com> Link: https://patch.msgid.link/e0c0a3b58a40935a1361f668851d041575861411.1725002410.git.ojaswin@linux.ibm.com Signed-off-by: Theodore Ts'o <tytso@mit.edu>
1 parent ee85e09 commit ff2beee

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

fs/ext4/mballoc.c

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2356,7 +2356,7 @@ int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
23562356
ex.fe_logical = 0xDEADFA11; /* debug value */
23572357

23582358
if (max >= ac->ac_g_ex.fe_len &&
2359-
ac->ac_g_ex.fe_len == EXT4_B2C(sbi, sbi->s_stripe)) {
2359+
ac->ac_g_ex.fe_len == EXT4_NUM_B2C(sbi, sbi->s_stripe)) {
23602360
ext4_fsblk_t start;
23612361

23622362
start = ext4_grp_offs_to_block(ac->ac_sb, &ex);
@@ -2553,7 +2553,7 @@ void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
25532553
do_div(a, sbi->s_stripe);
25542554
i = (a * sbi->s_stripe) - first_group_block;
25552555

2556-
stripe = EXT4_B2C(sbi, sbi->s_stripe);
2556+
stripe = EXT4_NUM_B2C(sbi, sbi->s_stripe);
25572557
i = EXT4_B2C(sbi, i);
25582558
while (i < EXT4_CLUSTERS_PER_GROUP(sb)) {
25592559
if (!mb_test_bit(i, bitmap)) {
@@ -2928,9 +2928,11 @@ ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
29282928
if (cr == CR_POWER2_ALIGNED)
29292929
ext4_mb_simple_scan_group(ac, &e4b);
29302930
else {
2931-
bool is_stripe_aligned = sbi->s_stripe &&
2931+
bool is_stripe_aligned =
2932+
(sbi->s_stripe >=
2933+
sbi->s_cluster_ratio) &&
29322934
!(ac->ac_g_ex.fe_len %
2933-
EXT4_B2C(sbi, sbi->s_stripe));
2935+
EXT4_NUM_B2C(sbi, sbi->s_stripe));
29342936

29352937
if ((cr == CR_GOAL_LEN_FAST ||
29362938
cr == CR_BEST_AVAIL_LEN) &&
@@ -3706,7 +3708,7 @@ int ext4_mb_init(struct super_block *sb)
37063708
*/
37073709
if (sbi->s_stripe > 1) {
37083710
sbi->s_mb_group_prealloc = roundup(
3709-
sbi->s_mb_group_prealloc, EXT4_B2C(sbi, sbi->s_stripe));
3711+
sbi->s_mb_group_prealloc, EXT4_NUM_B2C(sbi, sbi->s_stripe));
37103712
}
37113713

37123714
sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);

0 commit comments

Comments
 (0)