btrfs-progs: remove unused argument from block_group_free_all_extent

Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
Zhao Lei 2015-09-02 16:57:54 +02:00 committed by David Sterba
parent 75041ac126
commit 11b81f475f
1 changed files with 2 additions and 3 deletions

View File

@ -1094,8 +1094,7 @@ err:
return ret;
}
static int block_group_free_all_extent(struct btrfs_trans_handle *trans,
struct btrfs_root *root,
static int block_group_free_all_extent(struct btrfs_root *root,
struct block_group_record *bg)
{
struct btrfs_block_group_cache *cache;
@ -1135,7 +1134,7 @@ static int remove_chunk_extent_item(struct btrfs_trans_handle *trans,
if (ret)
return ret;
ret = block_group_free_all_extent(trans, root, chunk->bg_rec);
ret = block_group_free_all_extent(root, chunk->bg_rec);
if (ret)
return ret;
}