diff options
author | Theodore Ts'o <tytso@mit.edu> | 2010-10-28 01:30:15 (GMT) |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-10-28 01:30:15 (GMT) |
commit | 61d08673de1fe68bfba86203258377bf39f234b6 (patch) | |
tree | 5cb32998c69eca626df54b50cb01e50a83c4db81 /fs/ext4/balloc.c | |
parent | 4a873a472b3bbcfd425d7ae210afdec28c04e2e5 (diff) | |
download | linux-61d08673de1fe68bfba86203258377bf39f234b6.tar.xz |
ext4: rename mark_bitmap_end() to ext4_mark_bitmap_end()
Fix a namespace leak from fs/ext4
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/balloc.c')
-rw-r--r-- | fs/ext4/balloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c index a12cefc..14c3af2 100644 --- a/fs/ext4/balloc.c +++ b/fs/ext4/balloc.c @@ -171,7 +171,8 @@ unsigned ext4_init_block_bitmap(struct super_block *sb, struct buffer_head *bh, * less than the blocksize * 8 ( which is the size * of bitmap ), set rest of the block bitmap to 1 */ - mark_bitmap_end(group_blocks, sb->s_blocksize * 8, bh->b_data); + ext4_mark_bitmap_end(group_blocks, sb->s_blocksize * 8, + bh->b_data); } return free_blocks - ext4_group_used_meta_blocks(sb, block_group, gdp); } |