Commit cb723e49 authored by Josef Bacik's avatar Josef Bacik Committed by Chris Mason

Btrfs: reserve space for block groups

This changes our delayed refs calculations to include the space needed
to write back dirty block groups.
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent 28f75a0e
...@@ -2657,7 +2657,8 @@ int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, ...@@ -2657,7 +2657,8 @@ int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
struct btrfs_block_rsv *global_rsv; struct btrfs_block_rsv *global_rsv;
u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
u64 csum_bytes = trans->transaction->delayed_refs.pending_csums; u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
u64 num_bytes; u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
u64 num_bytes, num_dirty_bgs_bytes;
int ret = 0; int ret = 0;
num_bytes = btrfs_calc_trans_metadata_size(root, 1); num_bytes = btrfs_calc_trans_metadata_size(root, 1);
...@@ -2666,17 +2667,21 @@ int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, ...@@ -2666,17 +2667,21 @@ int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
num_bytes += (num_heads - 1) * root->nodesize; num_bytes += (num_heads - 1) * root->nodesize;
num_bytes <<= 1; num_bytes <<= 1;
num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize; num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
num_dirty_bgs);
global_rsv = &root->fs_info->global_block_rsv; global_rsv = &root->fs_info->global_block_rsv;
/* /*
* If we can't allocate any more chunks lets make sure we have _lots_ of * If we can't allocate any more chunks lets make sure we have _lots_ of
* wiggle room since running delayed refs can create more delayed refs. * wiggle room since running delayed refs can create more delayed refs.
*/ */
if (global_rsv->space_info->full) if (global_rsv->space_info->full) {
num_dirty_bgs_bytes <<= 1;
num_bytes <<= 1; num_bytes <<= 1;
}
spin_lock(&global_rsv->lock); spin_lock(&global_rsv->lock);
if (global_rsv->reserved <= num_bytes) if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
ret = 1; ret = 1;
spin_unlock(&global_rsv->lock); spin_unlock(&global_rsv->lock);
return ret; return ret;
...@@ -5408,6 +5413,7 @@ static int update_block_group(struct btrfs_trans_handle *trans, ...@@ -5408,6 +5413,7 @@ static int update_block_group(struct btrfs_trans_handle *trans,
if (list_empty(&cache->dirty_list)) { if (list_empty(&cache->dirty_list)) {
list_add_tail(&cache->dirty_list, list_add_tail(&cache->dirty_list,
&trans->transaction->dirty_bgs); &trans->transaction->dirty_bgs);
trans->transaction->num_dirty_bgs++;
btrfs_get_block_group(cache); btrfs_get_block_group(cache);
} }
spin_unlock(&trans->transaction->dirty_bgs_lock); spin_unlock(&trans->transaction->dirty_bgs_lock);
......
...@@ -251,6 +251,7 @@ static noinline int join_transaction(struct btrfs_root *root, unsigned int type) ...@@ -251,6 +251,7 @@ static noinline int join_transaction(struct btrfs_root *root, unsigned int type)
INIT_LIST_HEAD(&cur_trans->switch_commits); INIT_LIST_HEAD(&cur_trans->switch_commits);
INIT_LIST_HEAD(&cur_trans->pending_ordered); INIT_LIST_HEAD(&cur_trans->pending_ordered);
INIT_LIST_HEAD(&cur_trans->dirty_bgs); INIT_LIST_HEAD(&cur_trans->dirty_bgs);
cur_trans->num_dirty_bgs = 0;
spin_lock_init(&cur_trans->dirty_bgs_lock); spin_lock_init(&cur_trans->dirty_bgs_lock);
list_add_tail(&cur_trans->list, &fs_info->trans_list); list_add_tail(&cur_trans->list, &fs_info->trans_list);
extent_io_tree_init(&cur_trans->dirty_pages, extent_io_tree_init(&cur_trans->dirty_pages,
......
...@@ -64,6 +64,7 @@ struct btrfs_transaction { ...@@ -64,6 +64,7 @@ struct btrfs_transaction {
struct list_head pending_ordered; struct list_head pending_ordered;
struct list_head switch_commits; struct list_head switch_commits;
struct list_head dirty_bgs; struct list_head dirty_bgs;
u64 num_dirty_bgs;
spinlock_t dirty_bgs_lock; spinlock_t dirty_bgs_lock;
struct btrfs_delayed_ref_root delayed_refs; struct btrfs_delayed_ref_root delayed_refs;
int aborted; int aborted;
......
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