From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Christoph Hellwig <hch@infradead.org>
Cc: xfs <linux-xfs@vger.kernel.org>
Subject: Re: [RFC PATCH] xfs: try to avoid blowing out the transaction reservation when bunmaping a shared extent
Date: Thu, 27 Apr 2017 08:58:09 -0700 [thread overview]
Message-ID: <20170427155809.GF23371@birch.djwong.org> (raw)
In-Reply-To: <20170427074042.GB18392@infradead.org>
On Thu, Apr 27, 2017 at 12:40:42AM -0700, Christoph Hellwig wrote:
> > @@ -483,13 +485,24 @@ xfs_bui_recover(
> > }
> > xfs_trans_ijoin(tp, ip, 0);
> >
> > + count = bmap->me_len;
> > error = xfs_trans_log_finish_bmap_update(tp, budp, &dfops, type,
> > ip, whichfork, bmap->me_startoff,
> > - bmap->me_startblock, bmap->me_len,
> > - state);
> > + bmap->me_startblock, &count, state);
> > if (error)
> > goto err_dfops;
> >
> > + if (count > 0) {
> > + ASSERT(type == XFS_BMAP_UNMAP);
> > + irec.br_startblock = bmap->me_startblock;
> > + irec.br_blockcount = count;
> > + irec.br_startoff = bmap->me_startoff;
> > + irec.br_state = state;
> > + error = xfs_bmap_unmap_extent(tp->t_mountp, &dfops, ip, &irec);
> > + if (error)
> > + goto err_dfops;
> > + }
>
> Aren't we always returning -EAGAIN from xfs_trans_log_finish_bmap_update
> if count is non-zero? Seems like this path isn't currently hit by
> testing.
I hit it on generic/187 with a 1k block size.
>
> > +
> > /* Finish transaction, free inodes. */
> > error = xfs_defer_finish(&tp, &dfops, NULL);
> > if (error)
>
> > diff --git a/fs/xfs/xfs_trans_bmap.c b/fs/xfs/xfs_trans_bmap.c
> > index 6408e7d..14543d9 100644
> > --- a/fs/xfs/xfs_trans_bmap.c
> > +++ b/fs/xfs/xfs_trans_bmap.c
> > @@ -63,7 +63,7 @@ xfs_trans_log_finish_bmap_update(
> > int whichfork,
> > xfs_fileoff_t startoff,
> > xfs_fsblock_t startblock,
> > - xfs_filblks_t blockcount,
> > + xfs_filblks_t *blockcount,
> > xfs_exntst_t state)
> > {
> > int error;
> > @@ -196,16 +196,23 @@ xfs_bmap_update_finish_item(
> > void **state)
> > {
> > struct xfs_bmap_intent *bmap;
> > + xfs_filblks_t count;
> > int error;
> >
> > bmap = container_of(item, struct xfs_bmap_intent, bi_list);
> > + count = bmap->bi_bmap.br_blockcount;
> > error = xfs_trans_log_finish_bmap_update(tp, done_item, dop,
> > bmap->bi_type,
> > bmap->bi_owner, bmap->bi_whichfork,
> > bmap->bi_bmap.br_startoff,
> > bmap->bi_bmap.br_startblock,
> > - bmap->bi_bmap.br_blockcount,
> > + &count,
> > bmap->bi_bmap.br_state);
> > + if (!error && count > 0) {
> > + ASSERT(bmap->bi_type == XFS_BMAP_UNMAP);
> > + bmap->bi_bmap.br_blockcount = count;
> > + return -EAGAIN;
> > + }
>
> Can we just kill off xfs_trans_log_finish_bmap_update, move the
> code here and avoid the weird calling conventions?
I guess we could open-code all the stuff that it does in
xfs_bmap_update_finish_item and xfs_bui_recover, but I'd hate to have to
remember to update both copies.
--D
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2017-04-27 15:58 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-25 2:09 [RFC PATCH] xfs: try to avoid blowing out the transaction reservation when bunmaping a shared extent Darrick J. Wong
2017-04-26 13:59 ` Brian Foster
2017-04-26 21:37 ` Darrick J. Wong
2017-04-27 7:35 ` Christoph Hellwig
2017-04-28 19:40 ` Darrick J. Wong
2017-05-01 14:58 ` Brian Foster
2017-05-02 8:00 ` Christoph Hellwig
2017-05-02 12:05 ` Brian Foster
2017-05-04 11:59 ` Christoph Hellwig
2017-05-04 13:40 ` Brian Foster
2017-04-27 7:40 ` Christoph Hellwig
2017-04-27 15:58 ` Darrick J. Wong [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=20170427155809.GF23371@birch.djwong.org \
--to=darrick.wong@oracle.com \
--cc=hch@infradead.org \
--cc=linux-xfs@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