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

Commit f0265bb4 authored by Valentina Giusti's avatar Valentina Giusti Committed by Chris Mason
Browse files

btrfs: remove unused variable from setup_cluster_no_bitmap



The variable window_start in setup_cluster_no_bitmap is not used since commit
1bb91902
(Btrfs: revamp clustered allocation logic)

Signed-off-by: default avatarValentina Giusti <valentina.giusti@microon.de>
Signed-off-by: default avatarJosef Bacik <jbacik@fusionio.com>
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent 50892bac
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2421,7 +2421,6 @@ setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
	struct btrfs_free_space *entry = NULL;
	struct btrfs_free_space *last;
	struct rb_node *node;
	u64 window_start;
	u64 window_free;
	u64 max_extent;
	u64 total_size = 0;
@@ -2443,7 +2442,6 @@ setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
		entry = rb_entry(node, struct btrfs_free_space, offset_index);
	}

	window_start = entry->offset;
	window_free = entry->bytes;
	max_extent = entry->bytes;
	first = entry;