From: Dave Chinner <david@fromorbit.com>
To: "Darrick J. Wong" <djwong@kernel.org>
Cc: chandan.babu@gmail.com, linux-xfs@vger.kernel.org
Subject: Re: [PATCH v1.1 3/3] xfs: make inode unlinked bucket recovery work with quotacheck
Date: Fri, 8 Sep 2023 07:40:01 +1000 [thread overview]
Message-ID: <ZPpDMXYL06ks4l+j@dread.disaster.area> (raw)
In-Reply-To: <20230907183441.GN28202@frogsfrogsfrogs>
On Thu, Sep 07, 2023 at 11:34:41AM -0700, Darrick J. Wong wrote:
> On Thu, Sep 07, 2023 at 05:11:53PM +1000, Dave Chinner wrote:
> > On Tue, Sep 05, 2023 at 09:33:03AM -0700, Darrick J. Wong wrote:
> > > From: Darrick J. Wong <djwong@kernel.org>
> > >
> > > Teach quotacheck to reload the unlinked inode lists when walking the
> > > inode table. This requires extra state handling, since it's possible
> > > that a reloaded inode will get inactivated before quotacheck tries to
> > > scan it; in this case, we need to ensure that the reloaded inode does
> > > not have dquots attached when it is freed.
> > >
> > > Signed-off-by: Darrick J. Wong <djwong@kernel.org>
> > > ---
> > > v1.1: s/CONFIG_QUOTA/CONFIG_XFS_QUOTA/ and fix tracepoint flags decoding
> > > ---
> > > fs/xfs/xfs_inode.c | 12 +++++++++---
> > > fs/xfs/xfs_inode.h | 5 ++++-
> > > fs/xfs/xfs_mount.h | 10 +++++++++-
> > > fs/xfs/xfs_qm.c | 7 +++++++
> > > 4 files changed, 29 insertions(+), 5 deletions(-)
> > >
> > > diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
> > > index 56f6bde6001b..22af7268169b 100644
> > > --- a/fs/xfs/xfs_inode.c
> > > +++ b/fs/xfs/xfs_inode.c
> > > @@ -1743,9 +1743,13 @@ xfs_inactive(
> > > ip->i_df.if_nextents > 0 || ip->i_delayed_blks > 0))
> > > truncate = 1;
> > >
> > > - error = xfs_qm_dqattach(ip);
> > > - if (error)
> > > - goto out;
> > > + if (xfs_iflags_test(ip, XFS_IQUOTAUNCHECKED)) {
> > > + xfs_qm_dqdetach(ip);
> > > + } else {
> > > + error = xfs_qm_dqattach(ip);
> > > + if (error)
> > > + goto out;
> > > + }
> >
> > That needs a comment - I'm not going to remember why sometimes we
> > detatch dquots instead of attach them here....
>
> /*
> * If this inode is being inactivated during a quotacheck and
> * has not yet been scanned by quotacheck, we /must/ remove the
> * dquots from the inode before inactivation changes the block
> * and inode counts. Most probably this is a result of
> * reloading the incore iunlinked list to purge unrecovered
> * unlinked inodes.
> */
>
> How does that sound?
LGTM.
-Dave.
--
Dave Chinner
david@fromorbit.com
prev parent reply other threads:[~2023-09-07 21:40 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-03 16:15 [PATCHSET 0/3] xfs: reload entire iunlink lists Darrick J. Wong
2023-09-03 16:15 ` [PATCH 1/3] xfs: use i_prev_unlinked to distinguish inodes that are not on the unlinked list Darrick J. Wong
2023-09-07 6:27 ` Dave Chinner
2023-09-03 16:15 ` [PATCH 2/3] xfs: reload entire unlinked bucket lists Darrick J. Wong
2023-09-07 7:02 ` Dave Chinner
2023-09-07 18:30 ` Darrick J. Wong
2023-09-03 16:16 ` [PATCH 3/3] xfs: make inode unlinked bucket recovery work with quotacheck Darrick J. Wong
2023-09-05 16:33 ` [PATCH v1.1 " Darrick J. Wong
2023-09-07 7:11 ` Dave Chinner
2023-09-07 18:34 ` Darrick J. Wong
2023-09-07 21:40 ` Dave Chinner [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=ZPpDMXYL06ks4l+j@dread.disaster.area \
--to=david@fromorbit.com \
--cc=chandan.babu@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.