Skip to content

Commit

Permalink
Btrfs: start search for new cluster at the beginning
Browse files Browse the repository at this point in the history
Instead of starting at zero (offset is always zero), request a cluster
starting at search_start, that denotes the beginning of the current
block group.

Signed-off-by: Alexandre Oliva <oliva@lsd.ic.unicamp.br>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Alexandre Oliva authored and Chris Mason committed Nov 30, 2011
1 parent b78d09b commit 1b22bad
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions fs/btrfs/extent-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -5301,10 +5301,8 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans,
spin_lock(&last_ptr->refill_lock);
if (last_ptr->block_group &&
(last_ptr->block_group->ro ||
!block_group_bits(last_ptr->block_group, data))) {
offset = 0;
!block_group_bits(last_ptr->block_group, data)))
goto refill_cluster;
}

offset = btrfs_alloc_from_cluster(block_group, last_ptr,
num_bytes, search_start);
Expand Down Expand Up @@ -5355,7 +5353,7 @@ static noinline int find_free_extent(struct btrfs_trans_handle *trans,
/* allocate a cluster in this block group */
ret = btrfs_find_space_cluster(trans, root,
block_group, last_ptr,
offset, num_bytes,
search_start, num_bytes,
empty_cluster + empty_size);
if (ret == 0) {
/*
Expand Down

0 comments on commit 1b22bad

Please sign in to comment.