Linux Btrfs filesystem development
 help / color / mirror / Atom feed
From: Arne Jansen <sensille@gmx.net>
To: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Cc: Linux Btrfs <linux-btrfs@vger.kernel.org>,
	Jan Schmidt <list.btrfs@jan-o-sch.net>
Subject: Re: [PATCH RFC] Btrfs: fix confusing edquot happening case
Date: Mon, 15 Apr 2013 12:45:54 +0200	[thread overview]
Message-ID: <516BDA62.5080008@gmx.net> (raw)
In-Reply-To: <516BD85B.3050508@cn.fujitsu.com>

On 15.04.2013 12:37, Wang Shilong wrote:
> Step to reproduce:
> 	mkfs.btrfs <disk>
> 	mount <disk> <mnt>
> 	dd if=/dev/zero of=/<mnt>/data bs=1M count=10
> 	sync
> 	btrfs quota enable <mnt>
> 	btrfs qgroup create 0/5 <mnt>
> 	btrfs qgroup limit 5M 0/5 <mnt>
> 	rm -f /<mnt>/data
> 	sync
> 	btrfs qgroup show <mnt>
> 	dd if=/dev/zero of=data bs=1M count=1
> 
> From the perspective of users, qgroup's referenced or referenced
> 
> is negative,But user can not continue to write data! a workaround
> way is to cast u64 to int64 when doing qgroup reservation.
> 
> Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
> ---
> This confusing edquot may also happen after Jan's qgroup
> rescan has been implemented.
> ---
>  fs/btrfs/qgroup.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/btrfs/qgroup.c b/fs/btrfs/qgroup.c
> index b44124d..0178223 100644
> --- a/fs/btrfs/qgroup.c
> +++ b/fs/btrfs/qgroup.c
> @@ -1523,14 +1523,14 @@ int btrfs_qgroup_reserve(struct btrfs_root *root, u64 num_bytes)
>  		qg = (struct btrfs_qgroup *)(uintptr_t)unode->aux;
>  
>  		if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_RFER) &&
> -		    qg->reserved + qg->rfer + num_bytes >
> +		    qg->reserved + (signed long long)qg->rfer + num_bytes >

why not use s64 instead of signed long long? Otherwise this is the right way to
solve this.

Thanks,
Arne

>  		    qg->max_rfer) {
>  			ret = -EDQUOT;
>  			goto out;
>  		}
>  
>  		if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) &&
> -		    qg->reserved + qg->excl + num_bytes >
> +		    qg->reserved + (signed long long)qg->excl + num_bytes >
>  		    qg->max_excl) {
>  			ret = -EDQUOT;
>  			goto out;


  reply	other threads:[~2013-04-15 10:46 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-15 10:37 [PATCH RFC] Btrfs: fix confusing edquot happening case Wang Shilong
2013-04-15 10:45 ` Arne Jansen [this message]
2013-04-15 11:43   ` Wang Shilong
2013-04-15 12:03     ` Arne Jansen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=516BDA62.5080008@gmx.net \
    --to=sensille@gmx.net \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=list.btrfs@jan-o-sch.net \
    --cc=wangsl-fnst@cn.fujitsu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox