aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/extent-tree.c
diff options
context:
space:
mode:
authorJosef Bacik <josef@redhat.com>2011-08-30 12:34:28 -0400
committerJosef Bacik <josef@redhat.com>2011-10-19 15:12:44 -0400
commit4a92b1b8d2810db4ea0c34616b94c0b3810fa027 (patch)
treedd01cff1987b8178be84f8b750951497b7f525a7 /fs/btrfs/extent-tree.c
parentd02c9955ded7fc56dd1edc987558b084ccb03eb4 (diff)
Btrfs: stop passing a trans handle all around the reservation code
The only thing that we need to have a trans handle for is in reserve_metadata_bytes and thats to know how much flushing we can do. So instead of passing it around, just check current->journal_info for a trans_handle so we know if we can commit a transaction to try and free up space or not. Thanks, Signed-off-by: Josef Bacik <josef@redhat.com>
Diffstat (limited to 'fs/btrfs/extent-tree.c')
-rw-r--r--fs/btrfs/extent-tree.c45
1 files changed, 23 insertions, 22 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
index d236df790156..9bb71597aa54 100644
--- a/fs/btrfs/extent-tree.c
+++ b/fs/btrfs/extent-tree.c
@@ -3404,29 +3404,34 @@ static int shrink_delalloc(struct btrfs_trans_handle *trans,
3404 return reclaimed >= to_reclaim; 3404 return reclaimed >= to_reclaim;
3405} 3405}
3406 3406
3407/* 3407/**
3408 * Retries tells us how many times we've called reserve_metadata_bytes. The 3408 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
3409 * idea is if this is the first call (retries == 0) then we will add to our 3409 * @root - the root we're allocating for
3410 * reserved count if we can't make the allocation in order to hold our place 3410 * @block_rsv - the block_rsv we're allocating for
3411 * while we go and try and free up space. That way for retries > 1 we don't try 3411 * @orig_bytes - the number of bytes we want
3412 * and add space, we just check to see if the amount of unused space is >= the 3412 * @flush - wether or not we can flush to make our reservation
3413 * total space, meaning that our reservation is valid.
3414 * 3413 *
3415 * However if we don't intend to retry this reservation, pass -1 as retries so 3414 * This will reserve orgi_bytes number of bytes from the space info associated
3416 * that it short circuits this logic. 3415 * with the block_rsv. If there is not enough space it will make an attempt to
3416 * flush out space to make room. It will do this by flushing delalloc if
3417 * possible or committing the transaction. If flush is 0 then no attempts to
3418 * regain reservations will be made and this will fail if there is not enough
3419 * space already.
3417 */ 3420 */
3418static int reserve_metadata_bytes(struct btrfs_trans_handle *trans, 3421static int reserve_metadata_bytes(struct btrfs_root *root,
3419 struct btrfs_root *root,
3420 struct btrfs_block_rsv *block_rsv, 3422 struct btrfs_block_rsv *block_rsv,
3421 u64 orig_bytes, int flush) 3423 u64 orig_bytes, int flush)
3422{ 3424{
3423 struct btrfs_space_info *space_info = block_rsv->space_info; 3425 struct btrfs_space_info *space_info = block_rsv->space_info;
3426 struct btrfs_trans_handle *trans;
3424 u64 unused; 3427 u64 unused;
3425 u64 num_bytes = orig_bytes; 3428 u64 num_bytes = orig_bytes;
3426 int retries = 0; 3429 int retries = 0;
3427 int ret = 0; 3430 int ret = 0;
3428 bool committed = false; 3431 bool committed = false;
3429 bool flushing = false; 3432 bool flushing = false;
3433
3434 trans = (struct btrfs_trans_handle *)current->journal_info;
3430again: 3435again:
3431 ret = 0; 3436 ret = 0;
3432 spin_lock(&space_info->lock); 3437 spin_lock(&space_info->lock);
@@ -3689,8 +3694,7 @@ void btrfs_free_block_rsv(struct btrfs_root *root,
3689 kfree(rsv); 3694 kfree(rsv);
3690} 3695}
3691 3696
3692int btrfs_block_rsv_add(struct btrfs_trans_handle *trans, 3697int btrfs_block_rsv_add(struct btrfs_root *root,
3693 struct btrfs_root *root,
3694 struct btrfs_block_rsv *block_rsv, 3698 struct btrfs_block_rsv *block_rsv,
3695 u64 num_bytes) 3699 u64 num_bytes)
3696{ 3700{
@@ -3699,7 +3703,7 @@ int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3699 if (num_bytes == 0) 3703 if (num_bytes == 0)
3700 return 0; 3704 return 0;
3701 3705
3702 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, 1); 3706 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, 1);
3703 if (!ret) { 3707 if (!ret) {
3704 block_rsv_add_bytes(block_rsv, num_bytes, 1); 3708 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3705 return 0; 3709 return 0;
@@ -3708,8 +3712,7 @@ int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3708 return ret; 3712 return ret;
3709} 3713}
3710 3714
3711int btrfs_block_rsv_check(struct btrfs_trans_handle *trans, 3715int btrfs_block_rsv_check(struct btrfs_root *root,
3712 struct btrfs_root *root,
3713 struct btrfs_block_rsv *block_rsv, 3716 struct btrfs_block_rsv *block_rsv,
3714 u64 min_reserved, int min_factor, int flush) 3717 u64 min_reserved, int min_factor, int flush)
3715{ 3718{
@@ -3734,7 +3737,7 @@ int btrfs_block_rsv_check(struct btrfs_trans_handle *trans,
3734 if (!ret) 3737 if (!ret)
3735 return 0; 3738 return 0;
3736 3739
3737 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, flush); 3740 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
3738 if (!ret) { 3741 if (!ret) {
3739 block_rsv_add_bytes(block_rsv, num_bytes, 0); 3742 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3740 return 0; 3743 return 0;
@@ -4034,7 +4037,7 @@ int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
4034 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); 4037 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
4035 spin_unlock(&BTRFS_I(inode)->lock); 4038 spin_unlock(&BTRFS_I(inode)->lock);
4036 4039
4037 ret = reserve_metadata_bytes(NULL, root, block_rsv, to_reserve, flush); 4040 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
4038 if (ret) { 4041 if (ret) {
4039 u64 to_free = 0; 4042 u64 to_free = 0;
4040 unsigned dropped; 4043 unsigned dropped;
@@ -5689,8 +5692,7 @@ use_block_rsv(struct btrfs_trans_handle *trans,
5689 block_rsv = get_block_rsv(trans, root); 5692 block_rsv = get_block_rsv(trans, root);
5690 5693
5691 if (block_rsv->size == 0) { 5694 if (block_rsv->size == 0) {
5692 ret = reserve_metadata_bytes(trans, root, block_rsv, 5695 ret = reserve_metadata_bytes(root, block_rsv, blocksize, 0);
5693 blocksize, 0);
5694 /* 5696 /*
5695 * If we couldn't reserve metadata bytes try and use some from 5697 * If we couldn't reserve metadata bytes try and use some from
5696 * the global reserve. 5698 * the global reserve.
@@ -5711,8 +5713,7 @@ use_block_rsv(struct btrfs_trans_handle *trans,
5711 return block_rsv; 5713 return block_rsv;
5712 if (ret) { 5714 if (ret) {
5713 WARN_ON(1); 5715 WARN_ON(1);
5714 ret = reserve_metadata_bytes(trans, root, block_rsv, blocksize, 5716 ret = reserve_metadata_bytes(root, block_rsv, blocksize, 0);
5715 0);
5716 if (!ret) { 5717 if (!ret) {
5717 return block_rsv; 5718 return block_rsv;
5718 } else if (ret && block_rsv != global_rsv) { 5719 } else if (ret && block_rsv != global_rsv) {