From: Dave Chinner <david@fromorbit.com>
To: "Darrick J. Wong" <djwong@kernel.org>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 4/6] xfs: reduce the absurdly large log reservations
Date: Tue, 26 Apr 2022 14:25:53 +1000 [thread overview]
Message-ID: <20220426042553.GM1544202@dread.disaster.area> (raw)
In-Reply-To: <20220425234749.GO17025@magnolia>
On Mon, Apr 25, 2022 at 04:47:49PM -0700, Darrick J. Wong wrote:
> On Sat, Apr 23, 2022 at 08:51:52AM +1000, Dave Chinner wrote:
> > On Thu, Apr 14, 2022 at 03:54:48PM -0700, Darrick J. Wong wrote:
> > > From: Darrick J. Wong <djwong@kernel.org>
> > >
> > > Back in the early days of reflink and rmap development I set the
> > > transaction reservation sizes to be overly generous for rmap+reflink
> > > filesystems, and a little under-generous for rmap-only filesystems.
> > >
> > > Since we don't need *eight* transaction rolls to handle three new log
> > > intent items, decrease the logcounts to what we actually need, and amend
> > > the shadow reservation computation function to reflect what we used to
> > > do so that the minimum log size doesn't change.
> >
> > Yup, this will make a huge difference to the number of transactions
> > we can have in flight on reflink/rmap enabled filesystems.
> >
> > Mostly looks good, some comments about code and comments below.
....
> > > - /* Put everything back the way it was. This goes at the end. */
> > > - mp->m_rmap_maxlevels = rmap_maxlevels;
> > > + /* Add one logcount for BUI items that appear with rmap or reflink. */
> > > + if (xfs_has_reflink(mp) || xfs_has_rmapbt(mp)) {
> > > + resp->tr_itruncate.tr_logcount++;
> > > + resp->tr_write.tr_logcount++;
> > > + resp->tr_qm_dqalloc.tr_logcount++;
> > > + }
> > > +
> > > + /* Add one logcount for refcount intent items. */
> > > + if (xfs_has_reflink(mp)) {
> > > + resp->tr_itruncate.tr_logcount++;
> > > + resp->tr_write.tr_logcount++;
> > > + resp->tr_qm_dqalloc.tr_logcount++;
> > > + }
> > > +
> > > + /* Add one logcount for rmap intent items. */
> > > + if (xfs_has_rmapbt(mp)) {
> > > + resp->tr_itruncate.tr_logcount++;
> > > + resp->tr_write.tr_logcount++;
> > > + resp->tr_qm_dqalloc.tr_logcount++;
> > > + }
> >
> > This would be much more concisely written as
> >
> > count = 0;
> > if (xfs_has_reflink(mp) || xfs_has_rmapbt(mp)) {
> > count = 2;
> > if (xfs_has_reflink(mp) && xfs_has_rmapbt(mp))
> > count++;
> > }
> >
> > resp->tr_itruncate.tr_logcount += count;
> > resp->tr_write.tr_logcount += count;
> > resp->tr_qm_dqalloc.tr_logcount += count;
>
> I think I'd rather do:
>
> /*
> * Add one logcount for BUI items that appear with rmap or reflink,
> * one logcount for refcount intent items, and one logcount for rmap
> * intent items.
> */
> if (xfs_has_reflink(mp) || xfs_has_rmapbt(mp))
> logcount_adj++;
> if (xfs_has_reflink(mp))
> logcount_adj++;
> if (xfs_has_rmapbt(mp))
> logcount_adj++;
>
> resp->tr_itruncate.tr_logcount += logcount_adj;
> resp->tr_write.tr_logcount += logcount_adj;
> resp->tr_qm_dqalloc.tr_logcount += logcount_adj;
>
> If you don't mind?
Sure, that's just as good.
--Dave.
--
Dave Chinner
david@fromorbit.com
next prev parent reply other threads:[~2022-04-26 4:25 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-14 22:54 [PATCHSET 0/6] xfs: fix reflink inefficiencies Darrick J. Wong
2022-04-14 22:54 ` [PATCH 1/6] xfs: stop artificially limiting the length of bunmap calls Darrick J. Wong
2022-04-22 22:01 ` Dave Chinner
2022-04-22 22:18 ` Darrick J. Wong
2022-04-22 23:51 ` Dave Chinner
2022-04-26 13:46 ` Christoph Hellwig
2022-04-26 14:52 ` Darrick J. Wong
2022-04-14 22:54 ` [PATCH 2/6] xfs: remove a __xfs_bunmapi call from reflink Darrick J. Wong
2022-04-22 22:03 ` Dave Chinner
2022-04-26 13:47 ` Christoph Hellwig
2022-04-14 22:54 ` [PATCH 3/6] xfs: create shadow transaction reservations for computing minimum log size Darrick J. Wong
2022-04-22 22:36 ` Dave Chinner
2022-04-25 23:39 ` Darrick J. Wong
2022-04-26 4:24 ` Dave Chinner
2022-04-26 5:10 ` Darrick J. Wong
2022-04-14 22:54 ` [PATCH 4/6] xfs: reduce the absurdly large log reservations Darrick J. Wong
2022-04-22 22:51 ` Dave Chinner
2022-04-25 23:47 ` Darrick J. Wong
2022-04-26 4:25 ` Dave Chinner [this message]
2022-04-14 22:54 ` [PATCH 5/6] xfs: reduce transaction reservations with reflink Darrick J. Wong
2022-04-22 23:42 ` Dave Chinner
2022-04-25 23:49 ` Darrick J. Wong
2022-04-14 22:54 ` [PATCH 6/6] xfs: rewrite xfs_reflink_end_cow to use intents Darrick J. Wong
2022-04-22 23:50 ` 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=20220426042553.GM1544202@dread.disaster.area \
--to=david@fromorbit.com \
--cc=djwong@kernel.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