diff options
author | Theodore Ts'o <tytso@mit.edu> | 2009-05-25 11:50:39 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-05-25 11:50:39 -0400 |
commit | 88b6edd17c62b7d346d21f4087893ce7d4ef828a (patch) | |
tree | e6c80d48f184861c965a58bd88fd3a023b65a1c9 /fs/ext4/ialloc.c | |
parent | 759d427aa5a9d88a81afd11817cdeb40aea85234 (diff) |
ext4: Clean up calls to ext4_get_group_desc()
If the caller isn't planning on modifying the block group descriptors,
there's no need to pass in a pointer to a struct buffer_head. Nuking
this saves a tiny amount of CPU time and stack space usage.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ialloc.c')
-rw-r--r-- | fs/ext4/ialloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c index 82f7d1d7eae0..3743bd849bce 100644 --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c | |||
@@ -347,7 +347,6 @@ static int find_group_flex(struct super_block *sb, struct inode *parent, | |||
347 | { | 347 | { |
348 | struct ext4_sb_info *sbi = EXT4_SB(sb); | 348 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
349 | struct ext4_group_desc *desc; | 349 | struct ext4_group_desc *desc; |
350 | struct buffer_head *bh; | ||
351 | struct flex_groups *flex_group = sbi->s_flex_groups; | 350 | struct flex_groups *flex_group = sbi->s_flex_groups; |
352 | ext4_group_t parent_group = EXT4_I(parent)->i_block_group; | 351 | ext4_group_t parent_group = EXT4_I(parent)->i_block_group; |
353 | ext4_group_t parent_fbg_group = ext4_flex_group(sbi, parent_group); | 352 | ext4_group_t parent_fbg_group = ext4_flex_group(sbi, parent_group); |
@@ -402,7 +401,7 @@ find_close_to_parent: | |||
402 | found_flexbg: | 401 | found_flexbg: |
403 | for (i = best_flex * flex_size; i < ngroups && | 402 | for (i = best_flex * flex_size; i < ngroups && |
404 | i < (best_flex + 1) * flex_size; i++) { | 403 | i < (best_flex + 1) * flex_size; i++) { |
405 | desc = ext4_get_group_desc(sb, i, &bh); | 404 | desc = ext4_get_group_desc(sb, i, NULL); |
406 | if (ext4_free_inodes_count(sb, desc)) { | 405 | if (ext4_free_inodes_count(sb, desc)) { |
407 | *best_group = i; | 406 | *best_group = i; |
408 | goto out; | 407 | goto out; |