瀏覽代碼

Btrfs: don't try to allocate from a block group that doesn't have enough space

If we have a very large filesystem, we can spend a lot of time in
find_free_extent just trying to allocate from empty block groups.  So instead
check to see if the block group even has enough space for the allocation, and if
not go on to the next block group.

Signed-off-by: Josef Bacik <josef@redhat.com>
Josef Bacik 14 年之前
父節點
當前提交
cca1c81f43
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      fs/btrfs/extent-tree.c

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

@@ -5159,6 +5159,14 @@ have_block_group:
 		if (unlikely(block_group->ro))
 		if (unlikely(block_group->ro))
 			goto loop;
 			goto loop;
 
 
+		spin_lock(&block_group->tree_lock);
+		if (cached &&
+		    block_group->free_space < num_bytes + empty_size) {
+			spin_unlock(&block_group->tree_lock);
+			goto loop;
+		}
+		spin_unlock(&block_group->tree_lock);
+
 		/*
 		/*
 		 * Ok we want to try and use the cluster allocator, so lets look
 		 * Ok we want to try and use the cluster allocator, so lets look
 		 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
 		 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will