Pārlūkot izejas kodu

btrfs: reset max_extent_size properly

If we use up our block group before allocating a new one we'll easily
get a max_extent_size that's set really really low, which will result in
a lot of fragmentation.  We need to make sure we're resetting the
max_extent_size when we add a new chunk or add new space.

CC: stable@vger.kernel.org # 4.4+
Reviewed-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Josef Bacik 6 gadi atpakaļ
vecāks
revīzija
21a94f7acf
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  1. 2 0
      fs/btrfs/extent-tree.c

+ 2 - 0
fs/btrfs/extent-tree.c

@@ -4565,6 +4565,7 @@ static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
 			goto out;
 			goto out;
 	} else {
 	} else {
 		ret = 1;
 		ret = 1;
+		space_info->max_extent_size = 0;
 	}
 	}
 
 
 	space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
 	space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
@@ -6459,6 +6460,7 @@ static void btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
 		space_info->bytes_readonly += num_bytes;
 		space_info->bytes_readonly += num_bytes;
 	cache->reserved -= num_bytes;
 	cache->reserved -= num_bytes;
 	space_info->bytes_reserved -= num_bytes;
 	space_info->bytes_reserved -= num_bytes;
+	space_info->max_extent_size = 0;
 
 
 	if (delalloc)
 	if (delalloc)
 		cache->delalloc_bytes -= num_bytes;
 		cache->delalloc_bytes -= num_bytes;