diff options
author | Jing Zhang <zj.barak@gmail.com> | 2010-05-13 00:00:00 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-05-13 00:00:00 -0400 |
commit | 62e823a2cba18509ee826d775270e8ef9071b5bc (patch) | |
tree | f31bade5a792c962ba4c91b56c248228658fbc2a /fs/ext4 | |
parent | b720303df7352d4a7a1f61e467e0a124913c0d41 (diff) |
ext4: Remove unnecessary call to ext4_get_group_desc() in mballoc
Signed-off-by: Jing Zhang <zj.barak@gmail.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, 0 insertions, 2 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index b423a364dca3..0550ea3532f9 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c | |||
@@ -2025,7 +2025,6 @@ repeat: | |||
2025 | 2025 | ||
2026 | for (i = 0; i < ngroups; group++, i++) { | 2026 | for (i = 0; i < ngroups; group++, i++) { |
2027 | struct ext4_group_info *grp; | 2027 | struct ext4_group_info *grp; |
2028 | struct ext4_group_desc *desc; | ||
2029 | 2028 | ||
2030 | if (group == ngroups) | 2029 | if (group == ngroups) |
2031 | group = 0; | 2030 | group = 0; |
@@ -2048,7 +2047,6 @@ repeat: | |||
2048 | } | 2047 | } |
2049 | 2048 | ||
2050 | ac->ac_groups_scanned++; | 2049 | ac->ac_groups_scanned++; |
2051 | desc = ext4_get_group_desc(sb, group, NULL); | ||
2052 | if (cr == 0) | 2050 | if (cr == 0) |
2053 | ext4_mb_simple_scan_group(ac, &e4b); | 2051 | ext4_mb_simple_scan_group(ac, &e4b); |
2054 | else if (cr == 1 && | 2052 | else if (cr == 1 && |