diff options
author | Yongqiang Yang <xiaoqiangnk@gmail.com> | 2011-07-27 01:43:56 (GMT) |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-07-27 01:43:56 (GMT) |
commit | 0529155e8a4bcb77dfc9ceaea19c6501487e452b (patch) | |
tree | a67262d87fcfa101ea8ea3af9d90725a9de22f2c /fs/ext4/resize.c | |
parent | ce723c31b58f54fb865036805475ee7a8c5dc173 (diff) | |
download | linux-0529155e8a4bcb77dfc9ceaea19c6501487e452b.tar.xz |
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/resize.c')
-rw-r--r-- | fs/ext4/resize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 53d9795..d241ecb 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, ext4_debug("freeing blocks %llu through %llu\n", o_blocks_count, o_blocks_count + add); /* We add the blocks to the bitmap and set the group need init bit */ - ext4_add_groupblocks(handle, sb, o_blocks_count, add); + ext4_group_add_blocks(handle, sb, o_blocks_count, add); ext4_handle_dirty_super(handle, sb); ext4_debug("freed blocks %llu through %llu\n", o_blocks_count, o_blocks_count + add); |