public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Luis de Bethencourt <luisbg@osg.samsung.com>
To: fdmanana@gmail.com
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Chris Mason <clm@fb.com>, Josef Bacik <jbacik@fb.com>,
	David Sterba <dsterba@suse.com>,
	"linux-btrfs@vger.kernel.org" <linux-btrfs@vger.kernel.org>
Subject: Re: [PATCH 2/2] btrfs: avoid overflowing f_bfree
Date: Wed, 30 Mar 2016 23:10:16 +0100	[thread overview]
Message-ID: <56FC4EC8.9090700@osg.samsung.com> (raw)
In-Reply-To: <CAL3q7H7fFg0UNL_hR=rUpbGmFpM2QHK+ME4_NMn3zB4vuJYMcA@mail.gmail.com>

On 30/03/16 22:48, Filipe Manana wrote:
> On Wed, Mar 30, 2016 at 9:53 PM, Luis de Bethencourt
> <luisbg@osg.samsung.com> wrote:
>> Since mixed block groups accounting isn't byte-accurate and f_bree is an
>> unsigned integer, it could overflow. Avoid this.
>>
>> Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
>> Suggested-by: David Sterba <dsterba@suse.com>
>> ---
>>  fs/btrfs/super.c | 5 +++++
>>  1 file changed, 5 insertions(+)
>>
>> diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
>> index bdca79c..93376d0 100644
>> --- a/fs/btrfs/super.c
>> +++ b/fs/btrfs/super.c
>> @@ -2101,6 +2101,11 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
>>         /* Account global block reserve as used, it's in logical size already */
>>         spin_lock(&block_rsv->lock);
>>         buf->f_bfree -= block_rsv->size >> bits;
> 
> You forgot to remove the line above, didn't you?
> 

Shoot! Indeed I did, sorry. Thanks for noticing.

Sending version 2.

Luis

>> +       /* Mixed block groups accounting is not byte-accurate, avoid overflow */
>> +       if (buf->f_bfree >= block_rsv->size >> bits)
>> +               buf->f_bfree -= block_rsv->size >> bits;
>> +       else
>> +               buf->f_bfree = 0;
>>         spin_unlock(&block_rsv->lock);
>>
>>         buf->f_bavail = div_u64(total_free_data, factor);
>> --
>> 2.5.3
>>
>> --

      reply	other threads:[~2016-03-30 22:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-30 20:53 [PATCH 1/2] btrfs: fix mixed block count of available space Luis de Bethencourt
2016-03-30 20:53 ` [PATCH 2/2] btrfs: avoid overflowing f_bfree Luis de Bethencourt
2016-03-30 21:48   ` Filipe Manana
2016-03-30 22:10     ` Luis de Bethencourt [this message]

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=56FC4EC8.9090700@osg.samsung.com \
    --to=luisbg@osg.samsung.com \
    --cc=clm@fb.com \
    --cc=dsterba@suse.com \
    --cc=fdmanana@gmail.com \
    --cc=jbacik@fb.com \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /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