From: Dave Chinner <david@fromorbit.com>
To: Christoph Hellwig <hch@infradead.org>
Cc: xfs@oss.sgi.com
Subject: Re: [PATCH 3/5] metadump: separate single block objects from multiblock objects
Date: Tue, 4 Feb 2014 09:19:49 +1100 [thread overview]
Message-ID: <20140203221949.GU13997@dastard> (raw)
In-Reply-To: <20140203150907.GB6335@infradead.org>
On Mon, Feb 03, 2014 at 07:09:07AM -0800, Christoph Hellwig wrote:
> On Thu, Jan 23, 2014 at 09:23:53PM +1100, Dave Chinner wrote:
> > From: Dave Chinner <dchinner@redhat.com>
> >
> > When trying to dump objects, we have to treat multi-block objects
> > differently to single block objects. Separate out the code paths for
> > single block vs multi-block objects so we can add a separate path
> > for multi-block objects.
>
> Looks good, but two minor style nitpicks below.
>
> Reviewed-by: Christoph Hellwig <hch@lst.de>
>
> > static int
> > +process_multi_fsb_objects(
> > + xfs_dfiloff_t o,
> > + xfs_dfsbno_t s,
> > + xfs_dfilblks_t c,
> > + typnm_t btype,
> > + xfs_dfiloff_t last)
> > +{
> > + if (btype != TYP_DIR2) {
> > + print_warning("bad type for multi-fsb object %d", btype);
> > + return -EINVAL;
> > + }
> > +
> > + return process_single_fsb_objects(o, s, c, btype, last);
>
> I'd prefer a switch with a default statement for the unknown type here,
> as that leads to nicer extensibility.
Ok, I'll fix that up.
> > + /* single filesystem block objects are trivial to handle */
> > + if (btype != TYP_DIR2 || mp->m_dirblkfsbs == 1) {
> > + error = process_single_fsb_objects(o, s, c, btype, last);
> > + if (error)
> > return 0;
> > + continue;
> > }
> > +
> > + /* multi-extent directory blocks */
> > + error = process_multi_fsb_objects(o, s, c, btype, last);
> > + if (error)
> > + return 0;
>
> An if / else would look a little more obvious here, not that it really
> matters all that much.
Easy enough to do.
Thanks for the reviews, Christoph.
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next prev parent reply other threads:[~2014-02-03 22:19 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-23 10:23 [PATCH 0/5] metadump: discontiguous directory block support Dave Chinner
2014-01-23 10:23 ` [PATCH 1/5] metadump: sanitise write_buf/index return values Dave Chinner
2014-02-03 11:08 ` Christoph Hellwig
2014-02-13 19:30 ` Mark Tinguely
2014-02-14 2:20 ` Dave Chinner
2014-02-14 19:51 ` Mark Tinguely
2014-02-14 20:54 ` Mark Tinguely
2014-01-23 10:23 ` [PATCH 2/5] metadump: support writing discontiguous io cursors Dave Chinner
2014-02-03 15:06 ` Christoph Hellwig
2014-01-23 10:23 ` [PATCH 3/5] metadump: separate single block objects from multiblock objects Dave Chinner
2014-02-03 15:09 ` Christoph Hellwig
2014-02-03 22:19 ` Dave Chinner [this message]
2014-01-23 10:23 ` [PATCH 4/5] metadump: walk single fsb objects a block at a time Dave Chinner
2014-02-03 15:43 ` Christoph Hellwig
2014-01-23 10:23 ` [PATCH 5/5] metadump: fully support discontiguous directory blocks Dave Chinner
2014-02-03 21:15 ` Christoph Hellwig
2014-02-03 3:19 ` [PATCH 0/5] metadump: discontiguous directory block support Dave Chinner
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=20140203221949.GU13997@dastard \
--to=david@fromorbit.com \
--cc=hch@infradead.org \
--cc=xfs@oss.sgi.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