From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Brian Foster <bfoster@redhat.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 04/11] xfs: refactor dquot iteration
Date: Wed, 18 Apr 2018 15:20:51 -0700 [thread overview]
Message-ID: <20180418222051.GU24738@magnolia> (raw)
In-Reply-To: <20180418183429.GC22375@bfoster.bfoster>
On Wed, Apr 18, 2018 at 02:34:30PM -0400, Brian Foster wrote:
> On Tue, Apr 17, 2018 at 07:40:01PM -0700, Darrick J. Wong wrote:
> > From: Darrick J. Wong <darrick.wong@oracle.com>
> >
> > Create a helper function to iterate all the dquots of a given type in
> > the system, and refactor the dquot scrub to use it. This will get more
> > use in the quota repair code. Note that the new function differs from
> > xfs_qm_dqiterate in that _dqiterate iterates dquot buffers, not the
> > in-core structures themselves.
> >
> > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> > ---
> > fs/xfs/scrub/quota.c | 46 +++++++++++++++++++++-------------------------
> > fs/xfs/xfs_dquot.c | 41 +++++++++++++++++++++++++++++++++++++++++
> > fs/xfs/xfs_dquot.h | 5 +++++
> > 3 files changed, 67 insertions(+), 25 deletions(-)
> >
> >
> ...
> > diff --git a/fs/xfs/xfs_dquot.c b/fs/xfs/xfs_dquot.c
> > index ed2e37c..ec00402 100644
> > --- a/fs/xfs/xfs_dquot.c
> > +++ b/fs/xfs/xfs_dquot.c
> > @@ -1127,3 +1127,44 @@ xfs_qm_exit(void)
> > kmem_zone_destroy(xfs_qm_dqtrxzone);
> > kmem_zone_destroy(xfs_qm_dqzone);
> > }
> > +
> > +/*
> > + * Iterate every dquot of a particular type. The caller must ensure that the
> > + * particular quota type is active. iter_fn can return negative error codes,
> > + * or XFS_BTREE_QUERY_RANGE_ABORT to indicate that it wants to stop iterating.
> > + *
> > + * Note that xfs_qm_dqiterate iterates all the dquot bufs, not the dquots
> > + * themselves.
> > + */
> > +int
> > +xfs_dquot_iterate(
> > + struct xfs_mount *mp,
> > + uint dqtype,
> > + uint iter_flags,
> > + xfs_dquot_iterate_fn iter_fn,
> > + void *priv)
> > +{
> > + struct xfs_dquot *dq;
> > + xfs_dqid_t id = 0;
> > + int error;
> > +
> > + while (id < ((xfs_dqid_t)-1ULL)) {
> > + error = xfs_qm_dqget(mp, NULL, id, dqtype,
> > + XFS_QMOPT_DQNEXT | iter_flags, &dq);
> > + if (error == -ENOENT) {
> > + error = 0;
> > + break;
> > + }
> > + if (error)
> > + break;
> > +
>
> It looks like this logic could be simplified a bit. E.g.:
>
> while ((error = xfs_qm_dqget(mp, NULL, id, dqtype,
> XFS_QMOPT_DQNEXT | iter_flags, &dq)) == 0) {
> id = be32_to_cpu(dq->q_core.d_id);
> ...
>
> }
> return error == -ENOENT ? 0 : error;
The downside of this (the return line specifically) is we'll squash
iter_fn returning -ENOENT, even though the function comment says iter_fn
is allowed to return that.
That said, the current while loop test is wrong anyway; 0xFFFFFFFF is a
valid project id because the kernel will let you set it, even if
xfs_quota/xfs_io won't.
So I think this loop can become:
do {
error = xfs_qm_dqget(mp, NULL, id, dqtype,
XFS_QMOPT_DQNEXT | iter_flags, &dq);
if (error == -ENOENT)
return 0;
if (error)
return error;
id = be32_to_cpu(dq->q_core.d_id);
error = iter_fn(dq, dqtype, id, priv);
xfs_qm_dqput(dq);
id++;
} while (error == 0 && id != 0);
--D
>
> Otherwise looks good.
>
> Brian
>
> > + id = be32_to_cpu(dq->q_core.d_id);
> > + error = iter_fn(dq, dqtype, id, priv);
> > + xfs_qm_dqput(dq);
> > + id++;
> > + if (error || id == 0)
> > + break;
> > + }
> > +
> > + return error;
> > +}
> > diff --git a/fs/xfs/xfs_dquot.h b/fs/xfs/xfs_dquot.h
> > index 2f536f3..db0511e 100644
> > --- a/fs/xfs/xfs_dquot.h
> > +++ b/fs/xfs/xfs_dquot.h
> > @@ -185,4 +185,9 @@ static inline struct xfs_dquot *xfs_qm_dqhold(struct xfs_dquot *dqp)
> > return dqp;
> > }
> >
> > +typedef int (*xfs_dquot_iterate_fn)(struct xfs_dquot *dq, uint dqtype,
> > + xfs_dqid_t id, void *priv);
> > +int xfs_dquot_iterate(struct xfs_mount *mp, uint dqtype, uint iter_flags,
> > + xfs_dquot_iterate_fn iter_fn, void *priv);
> > +
> > #endif /* __XFS_DQUOT_H__ */
> >
> > --
> > 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
> --
> 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
next prev parent reply other threads:[~2018-04-18 22:21 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-18 2:39 [PATCH 00/11] xfs-4.18: online scrub fixes Darrick J. Wong
2018-04-18 2:39 ` [PATCH 01/11] xfs: skip scrub xref if corruption already noted Darrick J. Wong
2018-04-18 15:03 ` Brian Foster
2018-04-18 16:02 ` Darrick J. Wong
2018-04-18 2:39 ` [PATCH 02/11] xfs: create the XFS_QMOPT_QUOTIP_LOCKED flag Darrick J. Wong
2018-04-18 15:33 ` Brian Foster
2018-04-18 16:55 ` Darrick J. Wong
2018-04-18 17:09 ` Brian Foster
2018-04-19 8:32 ` Christoph Hellwig
2018-04-21 18:42 ` Darrick J. Wong
2018-04-18 2:39 ` [PATCH 03/11] xfs: report failing address when dquot verifier fails Darrick J. Wong
2018-04-18 18:33 ` Brian Foster
2018-04-18 2:40 ` [PATCH 04/11] xfs: refactor dquot iteration Darrick J. Wong
2018-04-18 18:34 ` Brian Foster
2018-04-18 22:20 ` Darrick J. Wong [this message]
2018-04-18 2:40 ` [PATCH 05/11] xfs: avoid ilock games in the quota scrubber Darrick J. Wong
2018-04-18 18:34 ` Brian Foster
2018-04-18 2:40 ` [PATCH 06/11] xfs: quota scrub should use bmapbtd scrubber Darrick J. Wong
2018-04-18 18:34 ` Brian Foster
2018-04-18 20:00 ` Darrick J. Wong
2018-04-19 11:20 ` Brian Foster
2018-04-18 2:40 ` [PATCH 07/11] xfs: superblock scrub should use uncached buffers Darrick J. Wong
2018-04-19 12:55 ` Brian Foster
2018-04-19 17:25 ` Darrick J. Wong
2018-04-19 18:57 ` Brian Foster
2018-04-20 0:07 ` Dave Chinner
2018-04-21 0:29 ` Darrick J. Wong
2018-04-20 0:05 ` Dave Chinner
2018-04-18 2:40 ` [PATCH 08/11] xfs: clean up scrub usage of KM_NOFS Darrick J. Wong
2018-04-19 12:55 ` Brian Foster
2018-04-18 2:40 ` [PATCH 09/11] xfs: btree scrub should check minrecs Darrick J. Wong
2018-04-19 12:55 ` Brian Foster
2018-04-18 2:40 ` [PATCH 10/11] xfs: refactor scrub transaction allocation function Darrick J. Wong
2018-04-19 12:56 ` Brian Foster
2018-04-18 2:40 ` [PATCH 11/11] xfs: avoid ABBA deadlock when scrubbing parent pointers Darrick J. Wong
2018-04-19 12:56 ` Brian Foster
2018-04-19 17:33 ` Darrick J. Wong
2018-04-19 18:58 ` Brian Foster
2018-04-19 19:06 ` Darrick J. Wong
2018-04-21 0:31 ` Darrick J. Wong
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=20180418222051.GU24738@magnolia \
--to=darrick.wong@oracle.com \
--cc=bfoster@redhat.com \
--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;
as well as URLs for NNTP newsgroup(s).