Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e882d6d authored by Christos Gkekas's avatar Christos Gkekas Committed by David Sterba
Browse files

btrfs: Clean up unused variables in free-space-tree.c



Remove variables 'start' and 'end', which are set but never used.

Signed-off-by: default avatarChristos Gkekas <chris.gekas@gmail.com>
Reviewed-by: default avatarOmar Sandoval <osandov@fb.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 709a95c3
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -1286,12 +1286,8 @@ static int __add_block_group_free_space(struct btrfs_trans_handle *trans,
					struct btrfs_block_group_cache *block_group,
					struct btrfs_path *path)
{
	u64 start, end;
	int ret;

	start = block_group->key.objectid;
	end = block_group->key.objectid + block_group->key.offset;

	block_group->needs_free_space = 0;

	ret = add_new_free_space_info(trans, fs_info, block_group, path);