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/mballoc.c | |
parent | ce723c31b58f54fb865036805475ee7a8c5dc173 (diff) | |
download | op-kernel-dev-0529155e8a4bcb77dfc9ceaea19c6501487e452b.zip op-kernel-dev-0529155e8a4bcb77dfc9ceaea19c6501487e452b.tar.gz |
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/mballoc.c')
-rw-r--r-- | fs/ext4/mballoc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index e165830..93035ea 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -4667,7 +4667,7 @@ error_return: } /** - * ext4_add_groupblocks() -- Add given blocks to an existing group + * ext4_group_add_blocks() -- Add given blocks to an existing group * @handle: handle to this transaction * @sb: super block * @block: start physcial block to add to the block group @@ -4675,7 +4675,7 @@ error_return: * * This marks the blocks as free in the bitmap and buddy. */ -void ext4_add_groupblocks(handle_t *handle, struct super_block *sb, +void ext4_group_add_blocks(handle_t *handle, struct super_block *sb, ext4_fsblk_t block, unsigned long count) { struct buffer_head *bitmap_bh = NULL; |