From: David Sterba <dsterba@suse.cz>
To: Petr Tesarik <ptesarik@suse.com>
Cc: Flex Liu <fliu@novell.com>, David Sterba <dsterba@suse.com>,
linux-btrfs@vger.kernel.org, Chris Mason <clm@fb.com>,
Josef Bacik <jbacik@fb.com>,
linux-kernel@vger.kernel.org, Flex Liu <fliu@suse.com>
Subject: Re: [PATCH 1/1] Btrfs: Code Cleanup
Date: Thu, 24 Mar 2016 17:09:06 +0100 [thread overview]
Message-ID: <20160324160905.GS29764@suse.cz> (raw)
In-Reply-To: <20160324160818.57850176@hananiah.suse.cz>
On Thu, Mar 24, 2016 at 04:08:18PM +0100, Petr Tesarik wrote:
> On Thu, 24 Mar 2016 16:03:07 +0100
> David Sterba <dsterba@suse.cz> wrote:
>
> > On Sun, Mar 20, 2016 at 03:11:11PM +0800, Flex Liu wrote:
> >[...]
> > > --- a/fs/btrfs/volumes.c
> > > +++ b/fs/btrfs/volumes.c
> > > @@ -2325,7 +2325,10 @@ int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
> > > if (seeding_dev) {
> > > sb->s_flags &= ~MS_RDONLY;
> > > ret = btrfs_prepare_sprout(root);
> > > - BUG_ON(ret); /* -ENOMEM */
> > > + if (ret) {
> > > + btrfs_abort_transaction(trans, root, ret);
> >
> > The transaction abort seems a bit heavy as it will take down the whole
> > filesystem. It's called from the device add ioctl, this is a restartable
> > operation.
> >
> > Unfortunatelly btrfs_prepare_sprout is called after the transaction
> > start so btrfs_abort_transaction must be called. To avoid it, the code
> > would need to be reorganized, so the memory allocations happen in
> > advance.
>
> On the other hand, an abort is still better than a BUG_ON(), and it may
> be easier to make incremental improvements.
That's acceptable, if there are going to be incremental improvements.
prev parent reply other threads:[~2016-03-24 16:09 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-20 7:11 [PATCH 1/1] Btrfs: Code Cleanup Flex Liu
2016-03-21 8:29 ` Anand Jain
2016-03-24 15:03 ` David Sterba
2016-03-24 15:08 ` Petr Tesarik
2016-03-24 16:09 ` David Sterba [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=20160324160905.GS29764@suse.cz \
--to=dsterba@suse.cz \
--cc=clm@fb.com \
--cc=dsterba@suse.com \
--cc=fliu@novell.com \
--cc=fliu@suse.com \
--cc=jbacik@fb.com \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=ptesarik@suse.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).