diff options
author | Yongqiang Yang <xiaoqiangnk@gmail.com> | 2011-07-26 21:43:56 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-07-26 21:43:56 -0400 |
commit | 0529155e8a4bcb77dfc9ceaea19c6501487e452b (patch) | |
tree | a67262d87fcfa101ea8ea3af9d90725a9de22f2c /fs/ext4 | |
parent | ce723c31b58f54fb865036805475ee7a8c5dc173 (diff) |
ext4: rename ext4_add_groupblocks() to ext4_group_add_blocks()
Signed-off-by: Yongqiang Yang <xiaoqiangnk@gmail.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/ext4.h | 2 | ||||
-rw-r--r-- | fs/ext4/mballoc.c | 4 | ||||
-rw-r--r-- | fs/ext4/resize.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index bb0f7760c7c..bbe81db76c7 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h | |||
@@ -1799,7 +1799,7 @@ extern void ext4_free_blocks(handle_t *handle, struct inode *inode, | |||
1799 | unsigned long count, int flags); | 1799 | unsigned long count, int flags); |
1800 | extern int ext4_mb_add_groupinfo(struct super_block *sb, | 1800 | extern int ext4_mb_add_groupinfo(struct super_block *sb, |
1801 | ext4_group_t i, struct ext4_group_desc *desc); | 1801 | ext4_group_t i, struct ext4_group_desc *desc); |
1802 | extern void ext4_add_groupblocks(handle_t *handle, struct super_block *sb, | 1802 | extern void ext4_group_add_blocks(handle_t *handle, struct super_block *sb, |
1803 | ext4_fsblk_t block, unsigned long count); | 1803 | ext4_fsblk_t block, unsigned long count); |
1804 | extern int ext4_trim_fs(struct super_block *, struct fstrim_range *); | 1804 | extern int ext4_trim_fs(struct super_block *, struct fstrim_range *); |
1805 | 1805 | ||
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index e16583032b6..93035ea70c0 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c | |||
@@ -4667,7 +4667,7 @@ error_return: | |||
4667 | } | 4667 | } |
4668 | 4668 | ||
4669 | /** | 4669 | /** |
4670 | * ext4_add_groupblocks() -- Add given blocks to an existing group | 4670 | * ext4_group_add_blocks() -- Add given blocks to an existing group |
4671 | * @handle: handle to this transaction | 4671 | * @handle: handle to this transaction |
4672 | * @sb: super block | 4672 | * @sb: super block |
4673 | * @block: start physcial block to add to the block group | 4673 | * @block: start physcial block to add to the block group |
@@ -4675,7 +4675,7 @@ error_return: | |||
4675 | * | 4675 | * |
4676 | * This marks the blocks as free in the bitmap and buddy. | 4676 | * This marks the blocks as free in the bitmap and buddy. |
4677 | */ | 4677 | */ |
4678 | void ext4_add_groupblocks(handle_t *handle, struct super_block *sb, | 4678 | void ext4_group_add_blocks(handle_t *handle, struct super_block *sb, |
4679 | ext4_fsblk_t block, unsigned long count) | 4679 | ext4_fsblk_t block, unsigned long count) |
4680 | { | 4680 | { |
4681 | struct buffer_head *bitmap_bh = NULL; | 4681 | struct buffer_head *bitmap_bh = NULL; |
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 53d979541b3..d241ecbb0d5 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c | |||
@@ -1056,7 +1056,7 @@ int ext4_group_extend(struct super_block *sb, struct ext4_super_block *es, | |||
1056 | ext4_debug("freeing blocks %llu through %llu\n", o_blocks_count, | 1056 | ext4_debug("freeing blocks %llu through %llu\n", o_blocks_count, |
1057 | o_blocks_count + add); | 1057 | o_blocks_count + add); |
1058 | /* We add the blocks to the bitmap and set the group need init bit */ | 1058 | /* We add the blocks to the bitmap and set the group need init bit */ |
1059 | ext4_add_groupblocks(handle, sb, o_blocks_count, add); | 1059 | ext4_group_add_blocks(handle, sb, o_blocks_count, add); |
1060 | ext4_handle_dirty_super(handle, sb); | 1060 | ext4_handle_dirty_super(handle, sb); |
1061 | ext4_debug("freed blocks %llu through %llu\n", o_blocks_count, | 1061 | ext4_debug("freed blocks %llu through %llu\n", o_blocks_count, |
1062 | o_blocks_count + add); | 1062 | o_blocks_count + add); |