linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Btrfs: fix ENOSPC in qgroups (metadata)
@ 2013-01-28 12:03 Jan Schmidt
  2013-01-28 12:44 ` Miao Xie
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Schmidt @ 2013-01-28 12:03 UTC (permalink / raw)
  To: chris.mason, linux-btrfs; +Cc: jmwdev38, jbacik, sensille

When start_transaction() returns ENOSPC after btrfs_qgroup_reserve(), we
must call btrfs_qgroup_free() to avoid the qgroup counters increasing when
there's actually no data being written.

Signed-off-by: Jan Schmidt <list.btrfs@jan-o-sch.net>
---

Josef: It looks like these places (except the first) are candidates for
btrfs_block_rsv_release, please check.

---
 fs/btrfs/transaction.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c
index 87fac9a..f2430fd 100644
--- a/fs/btrfs/transaction.c
+++ b/fs/btrfs/transaction.c
@@ -332,13 +332,17 @@ start_transaction(struct btrfs_root *root, u64 num_items, int type,
 		ret = btrfs_block_rsv_add(root,
 					  &root->fs_info->trans_block_rsv,
 					  num_bytes, flush);
-		if (ret)
+		if (ret) {
+			btrfs_qgroup_free(root, qgroup_reserved);
 			return ERR_PTR(ret);
+		}
 	}
 again:
 	h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
-	if (!h)
+	if (!h) {
+		btrfs_qgroup_free(root, qgroup_reserved);
 		return ERR_PTR(-ENOMEM);
+	}
 
 	/*
 	 * If we are JOIN_NOLOCK we're already committing a transaction and
@@ -369,6 +373,7 @@ again:
 		if (type < TRANS_JOIN_NOLOCK)
 			sb_end_intwrite(root->fs_info->sb);
 		kmem_cache_free(btrfs_trans_handle_cachep, h);
+		btrfs_qgroup_free(root, qgroup_reserved);
 		return ERR_PTR(ret);
 	}
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Btrfs: fix ENOSPC in qgroups (metadata)
  2013-01-28 12:03 [PATCH] Btrfs: fix ENOSPC in qgroups (metadata) Jan Schmidt
@ 2013-01-28 12:44 ` Miao Xie
  2013-01-28 12:50   ` Jan Schmidt
  0 siblings, 1 reply; 3+ messages in thread
From: Miao Xie @ 2013-01-28 12:44 UTC (permalink / raw)
  To: Jan Schmidt; +Cc: chris.mason, linux-btrfs, jmwdev38, jbacik, sensille

On mon, 28 Jan 2013 13:03:46 +0100, Jan Schmidt wrote:
> When start_transaction() returns ENOSPC after btrfs_qgroup_reserve(), we
> must call btrfs_qgroup_free() to avoid the qgroup counters increasing when
> there's actually no data being written.
> 
> Signed-off-by: Jan Schmidt <list.btrfs@jan-o-sch.net>
> ---
> Josef: It looks like these places (except the first) are candidates for
> btrfs_block_rsv_release, please check.

I didn't note that you have made a patch for the qgroup reservation problem, so I sent
my fix patch.

But start_transaction() has reservation problems not only for qgroup, but also for
the free space, your patch didn't fix the free space reservation problem.

Thanks
Miao

> 
> ---
>  fs/btrfs/transaction.c |    9 +++++++--
>  1 files changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c
> index 87fac9a..f2430fd 100644
> --- a/fs/btrfs/transaction.c
> +++ b/fs/btrfs/transaction.c
> @@ -332,13 +332,17 @@ start_transaction(struct btrfs_root *root, u64 num_items, int type,
>  		ret = btrfs_block_rsv_add(root,
>  					  &root->fs_info->trans_block_rsv,
>  					  num_bytes, flush);
> -		if (ret)
> +		if (ret) {
> +			btrfs_qgroup_free(root, qgroup_reserved);
>  			return ERR_PTR(ret);
> +		}
>  	}
>  again:
>  	h = kmem_cache_alloc(btrfs_trans_handle_cachep, GFP_NOFS);
> -	if (!h)
> +	if (!h) {
> +		btrfs_qgroup_free(root, qgroup_reserved);
>  		return ERR_PTR(-ENOMEM);
> +	}
>  
>  	/*
>  	 * If we are JOIN_NOLOCK we're already committing a transaction and
> @@ -369,6 +373,7 @@ again:
>  		if (type < TRANS_JOIN_NOLOCK)
>  			sb_end_intwrite(root->fs_info->sb);
>  		kmem_cache_free(btrfs_trans_handle_cachep, h);
> +		btrfs_qgroup_free(root, qgroup_reserved);
>  		return ERR_PTR(ret);
>  	}
>  
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Btrfs: fix ENOSPC in qgroups (metadata)
  2013-01-28 12:44 ` Miao Xie
@ 2013-01-28 12:50   ` Jan Schmidt
  0 siblings, 0 replies; 3+ messages in thread
From: Jan Schmidt @ 2013-01-28 12:50 UTC (permalink / raw)
  To: miaox; +Cc: chris.mason, linux-btrfs, jmwdev38, jbacik, sensille

Hi Miao,

On 28.01.2013 13:44, Miao Xie wrote:
> On mon, 28 Jan 2013 13:03:46 +0100, Jan Schmidt wrote:
>> When start_transaction() returns ENOSPC after btrfs_qgroup_reserve(), we
>> must call btrfs_qgroup_free() to avoid the qgroup counters increasing when
>> there's actually no data being written.
>>
>> Signed-off-by: Jan Schmidt <list.btrfs@jan-o-sch.net>
>> ---
>> Josef: It looks like these places (except the first) are candidates for
>> btrfs_block_rsv_release, please check.
> 
> I didn't note that you have made a patch for the qgroup reservation problem, so I sent
> my fix patch.
> 
> But start_transaction() has reservation problems not only for qgroup, but also for
> the free space, your patch didn't fix the free space reservation problem.

I see, we better take your patch then. Although my commit message was
way more descriptive ;-)

Josef: You've been saved.

Thanks,
-Jan

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-01-28 12:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-28 12:03 [PATCH] Btrfs: fix ENOSPC in qgroups (metadata) Jan Schmidt
2013-01-28 12:44 ` Miao Xie
2013-01-28 12:50   ` Jan Schmidt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).