From: Liu Bo <bo.li.liu@oracle.com>
To: dsterba@suse.cz, Qu Wenruo <quwenruo.btrfs@gmx.com>,
linux-btrfs@vger.kernel.org
Subject: Re: [PATCH] Btrfs: do not backup tree roots when fsync
Date: Fri, 15 Sep 2017 15:09:05 -0600 [thread overview]
Message-ID: <20170915210905.GC16835@dhcp-10-211-47-181.usdhcp.oraclecorp.com> (raw)
In-Reply-To: <20170914124903.GU29043@twin.jikos.cz>
On Thu, Sep 14, 2017 at 02:49:03PM +0200, David Sterba wrote:
> On Thu, Sep 14, 2017 at 09:55:48AM +0800, Qu Wenruo wrote:
> >
> >
> > On 2017年09月14日 02:25, Liu Bo wrote:
> > > It doens't make sense to backup tree roots when doing fsync, since
> > > during fsync those tree roots have not been consistent on disk.
> > >
> > > Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
> >
> > Reviewed-by: Qu Wenruo <quwenruo.btrfs@gmx.com>
> >
> > With a pit can be improved.
> > > ---
> > > fs/btrfs/disk-io.c | 9 ++++++++-
> > > 1 file changed, 8 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
> > > index 79ac228..a145a88 100644
> > > --- a/fs/btrfs/disk-io.c
> > > +++ b/fs/btrfs/disk-io.c
> > > @@ -3668,7 +3668,14 @@ int write_all_supers(struct btrfs_fs_info *fs_info, int max_mirrors)
> > > u64 flags;
> > >
> > > do_barriers = !btrfs_test_opt(fs_info, NOBARRIER);
> > > - backup_super_roots(fs_info);
> > > +
> > > + /*
> > > + * max_mirrors == 0 indicates we're from commit_transaction,
> > > + * not from fsync where the tree roots in fs_info have not
> > > + * been consistent on disk.
> > > + */
> > > + if (max_mirrors == 0)
> > > + backup_super_roots(fs_info);
> >
> > BTW, the @max_mirrors naming here is really confusing.
> > Normally I would expect max_mirrors == 0 means we don't need to backup
> > super roots...
>
> Agreed it's confusing, could be something like "bool write_backups" (in a
> separate patch).
Good point, will do in a separate one, thanks to both for the
comments.
Thanks,
-liubo
next prev parent reply other threads:[~2017-09-15 22:10 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-13 18:25 [PATCH] Btrfs: do not backup tree roots when fsync Liu Bo
2017-09-14 1:55 ` Qu Wenruo
2017-09-14 12:49 ` David Sterba
2017-09-15 21:09 ` Liu Bo [this message]
2017-09-22 23:36 ` [PATCH] Btrfs: use self-explaining variable Liu Bo
2017-09-23 0:46 ` Qu Wenruo
2017-09-23 0:48 ` Liu Bo
2017-09-23 1:09 ` Qu Wenruo
2017-09-24 13:24 ` David Sterba
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=20170915210905.GC16835@dhcp-10-211-47-181.usdhcp.oraclecorp.com \
--to=bo.li.liu@oracle.com \
--cc=dsterba@suse.cz \
--cc=linux-btrfs@vger.kernel.org \
--cc=quwenruo.btrfs@gmx.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;
as well as URLs for NNTP newsgroup(s).