diff options
author | Theodore Ts'o <tytso@mit.edu> | 2008-07-11 19:27:31 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-07-11 19:27:31 -0400 |
commit | 574ca174c97f790086e3e6f2251381420ad38fd0 (patch) | |
tree | 9a29a6f69e4f5a84f434f869935e3442eaeed315 /fs/ext4/group.h | |
parent | 3537576a707c6df98e883b77b854c6083f844602 (diff) | |
download | op-kernel-dev-574ca174c97f790086e3e6f2251381420ad38fd0.zip op-kernel-dev-574ca174c97f790086e3e6f2251381420ad38fd0.tar.gz |
ext4: Rename read_block_bitmap() to ext4_read_block_bitmap()
Since this a non-static function, make it be ext4 specific to avoid
conflicts with potentially other filesystems.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/group.h')
-rw-r--r-- | fs/ext4/group.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/group.h b/fs/ext4/group.h index 7eb0604..c2c0a8d 100644 --- a/fs/ext4/group.h +++ b/fs/ext4/group.h @@ -13,7 +13,7 @@ extern __le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 group, struct ext4_group_desc *gdp); extern int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 group, struct ext4_group_desc *gdp); -struct buffer_head *read_block_bitmap(struct super_block *sb, +struct buffer_head *ext4_read_block_bitmap(struct super_block *sb, ext4_group_t block_group); extern unsigned ext4_init_block_bitmap(struct super_block *sb, struct buffer_head *bh, |