Commit 5d196fc1 authored by Chris Mason's avatar Chris Mason

Btrfs: Use 2MB as the empty_size for clustered allocations

Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
parent 7261009c
...@@ -1476,7 +1476,7 @@ static int noinline find_free_extent(struct btrfs_trans_handle *trans, ...@@ -1476,7 +1476,7 @@ static int noinline find_free_extent(struct btrfs_trans_handle *trans,
if (last_ptr && *last_ptr && search_start != *last_ptr) { if (last_ptr && *last_ptr && search_start != *last_ptr) {
*last_ptr = 0; *last_ptr = 0;
if (!empty_size) { if (!empty_size) {
empty_size += 16 * 1024 * 1024; empty_size += 2 * 1024 * 1024;
total_needed += empty_size; total_needed += empty_size;
} }
search_start = find_search_start(root, &block_group, search_start = find_search_start(root, &block_group,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment