diff options
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/mballoc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 5338b1ca64bb..a75de7d44dc9 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c | |||
@@ -1822,8 +1822,7 @@ void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac, | |||
1822 | 1822 | ||
1823 | /* | 1823 | /* |
1824 | * This is a special case for storages like raid5 | 1824 | * This is a special case for storages like raid5 |
1825 | * we try to find stripe-aligned chunks for stripe-size requests | 1825 | * we try to find stripe-aligned chunks for stripe-size-multiple requests |
1826 | * XXX should do so at least for multiples of stripe size as well | ||
1827 | */ | 1826 | */ |
1828 | static noinline_for_stack | 1827 | static noinline_for_stack |
1829 | void ext4_mb_scan_aligned(struct ext4_allocation_context *ac, | 1828 | void ext4_mb_scan_aligned(struct ext4_allocation_context *ac, |
@@ -2092,8 +2091,8 @@ repeat: | |||
2092 | ac->ac_groups_scanned++; | 2091 | ac->ac_groups_scanned++; |
2093 | if (cr == 0) | 2092 | if (cr == 0) |
2094 | ext4_mb_simple_scan_group(ac, &e4b); | 2093 | ext4_mb_simple_scan_group(ac, &e4b); |
2095 | else if (cr == 1 && | 2094 | else if (cr == 1 && sbi->s_stripe && |
2096 | ac->ac_g_ex.fe_len == sbi->s_stripe) | 2095 | !(ac->ac_g_ex.fe_len % sbi->s_stripe)) |
2097 | ext4_mb_scan_aligned(ac, &e4b); | 2096 | ext4_mb_scan_aligned(ac, &e4b); |
2098 | else | 2097 | else |
2099 | ext4_mb_complex_scan_group(ac, &e4b); | 2098 | ext4_mb_complex_scan_group(ac, &e4b); |