From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Brian Foster <bfoster@redhat.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 10/13] xfs: refactor the ifork block counting function
Date: Tue, 6 Jun 2017 13:35:22 -0700 [thread overview]
Message-ID: <20170606203522.GF5196@birch.djwong.org> (raw)
In-Reply-To: <20170606185112.GE5196@birch.djwong.org>
On Tue, Jun 06, 2017 at 11:51:12AM -0700, Darrick J. Wong wrote:
> On Tue, Jun 06, 2017 at 12:29:21PM -0400, Brian Foster wrote:
> > On Fri, Jun 02, 2017 at 02:25:01PM -0700, Darrick J. Wong wrote:
> > > From: Darrick J. Wong <darrick.wong@oracle.com>
> > >
> > > Refactor the inode fork block counting function to count extents for us
> > > at the same time. This will be used by the bmbt scrubber function.
> > >
> > > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> > > ---
> > > fs/xfs/xfs_bmap_util.c | 105 +++++++++++++++++++++++++++++-------------------
> > > fs/xfs/xfs_bmap_util.h | 4 ++
> > > 2 files changed, 67 insertions(+), 42 deletions(-)
> > >
> > >
> > > diff --git a/fs/xfs/xfs_bmap_util.c b/fs/xfs/xfs_bmap_util.c
> > > index fe83bbc..fc15305 100644
> > > --- a/fs/xfs/xfs_bmap_util.c
> > > +++ b/fs/xfs/xfs_bmap_util.c
> > ...
> > > @@ -336,44 +339,61 @@ xfs_bmap_count_tree(
> > > /*
> > > * Count fsblocks of the given fork.
> > > */
> > > -static int /* error */
> > > +int
> > > xfs_bmap_count_blocks(
> > > - xfs_trans_t *tp, /* transaction pointer */
> > > - xfs_inode_t *ip, /* incore inode */
> > > - int whichfork, /* data or attr fork */
> > > - int *count) /* out: count of blocks */
> > > + struct xfs_trans *tp,
> > > + struct xfs_inode *ip,
> > > + int whichfork,
> > > + unsigned int *nextents,
> > > + unsigned long long *count)
> > > {
> > > struct xfs_btree_block *block; /* current btree block */
> > > xfs_fsblock_t bno; /* block # of "block" */
> > > - xfs_ifork_t *ifp; /* fork structure */
> > > + struct xfs_ifork *ifp; /* fork structure */
> > > int level; /* btree level, for checking */
> > > - xfs_mount_t *mp; /* file system mount structure */
> > > + struct xfs_mount *mp; /* file system mount structure */
> > > __be64 *pp; /* pointer to block address */
> > > + int error;
> > >
> > > bno = NULLFSBLOCK;
> > > mp = ip->i_mount;
> > > + *nextents = 0;
> >
> > I think we should be consistent between how we initialize nextents and
> > count, whether we initialize both here or expect the caller to do it.
>
> I later take advantage of the "doesn't initialize count" behavior for
> inode extent and i_nblocks checking, but yes, this needs to be
> consistent. AFAICT the other XFS functions either return errors or
> initialize the parameters, so this function should do so too. I'll
> update the scrub code to reflect this.
I found a discrepancy, too -- xfs_bmap_count_leaves counts all the
blocks in the in-core inode fork, including delalloc reservations.
However, xfs_bmap_count_tree iterates the on-disk bmap btree, which
means that it does /not/ count delalloc reservations. For the only
caller so far (xfs_swap_extents) this isn't a problem because we've
flushed the dirty data and locked the inode so there aren't any da
reservations. However, for scrub we don't necessarily flush the page
cache, so the da reservations sometimes get counted and sometimes don't,
which causes a cross-referencing error if scrub happens to hit a btree
format file that has been written to.
So.... one more patch to fix that. :(
--D
>
> --D
>
> > That aside, the rest looks good to me:
> >
> > Reviewed-by: Brian Foster <bfoster@redhat.com>
> >
> > > ifp = XFS_IFORK_PTR(ip, whichfork);
> > > - if ( XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ) {
> > > - xfs_bmap_count_leaves(ifp, 0, xfs_iext_count(ifp), count);
> > > + if (!ifp)
> > > return 0;
> > > - }
> > >
> > > - /*
> > > - * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
> > > - */
> > > - block = ifp->if_broot;
> > > - level = be16_to_cpu(block->bb_level);
> > > - ASSERT(level > 0);
> > > - pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
> > > - bno = be64_to_cpu(*pp);
> > > - ASSERT(bno != NULLFSBLOCK);
> > > - ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
> > > - ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
> > > -
> > > - if (unlikely(xfs_bmap_count_tree(mp, tp, ifp, bno, level, count) < 0)) {
> > > - XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW,
> > > - mp);
> > > - return -EFSCORRUPTED;
> > > + switch (XFS_IFORK_FORMAT(ip, whichfork)) {
> > > + case XFS_DINODE_FMT_EXTENTS:
> > > + *nextents = xfs_iext_count(ifp);
> > > + xfs_bmap_count_leaves(ifp, 0, (*nextents), count);
> > > + return 0;
> > > + case XFS_DINODE_FMT_BTREE:
> > > + if (!(ifp->if_flags & XFS_IFEXTENTS)) {
> > > + error = xfs_iread_extents(tp, ip, whichfork);
> > > + if (error)
> > > + return error;
> > > + }
> > > +
> > > + /*
> > > + * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
> > > + */
> > > + block = ifp->if_broot;
> > > + level = be16_to_cpu(block->bb_level);
> > > + ASSERT(level > 0);
> > > + pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
> > > + bno = be64_to_cpu(*pp);
> > > + ASSERT(bno != NULLFSBLOCK);
> > > + ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
> > > + ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
> > > +
> > > + error = xfs_bmap_count_tree(mp, tp, ifp, bno, level,
> > > + nextents, count);
> > > + if (error) {
> > > + XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)",
> > > + XFS_ERRLEVEL_LOW, mp);
> > > + return -EFSCORRUPTED;
> > > + }
> > > + return 0;
> > > }
> > >
> > > return 0;
> > > @@ -1789,8 +1809,9 @@ xfs_swap_extent_forks(
> > > int *target_log_flags)
> > > {
> > > struct xfs_ifork tempifp, *ifp, *tifp;
> > > - int aforkblks = 0;
> > > - int taforkblks = 0;
> > > + unsigned long long aforkblks = 0;
> > > + unsigned long long taforkblks = 0;
> > > + unsigned int junk;
> > > xfs_extnum_t nextents;
> > > uint64_t tmp;
> > > int error;
> > > @@ -1800,14 +1821,14 @@ xfs_swap_extent_forks(
> > > */
> > > if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
> > > (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
> > > - error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK,
> > > + error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &junk,
> > > &aforkblks);
> > > if (error)
> > > return error;
> > > }
> > > if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
> > > (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
> > > - error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
> > > + error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK, &junk,
> > > &taforkblks);
> > > if (error)
> > > return error;
> > > diff --git a/fs/xfs/xfs_bmap_util.h b/fs/xfs/xfs_bmap_util.h
> > > index 135d826..993973c 100644
> > > --- a/fs/xfs/xfs_bmap_util.h
> > > +++ b/fs/xfs/xfs_bmap_util.h
> > > @@ -70,4 +70,8 @@ int xfs_swap_extents(struct xfs_inode *ip, struct xfs_inode *tip,
> > >
> > > xfs_daddr_t xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb);
> > >
> > > +int xfs_bmap_count_blocks(struct xfs_trans *tp, struct xfs_inode *ip,
> > > + int whichfork, unsigned int *nextents,
> > > + unsigned long long *count);
> > > +
> > > #endif /* __XFS_BMAP_UTIL_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
> --
> 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:[~2017-06-06 20:35 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-02 21:24 [PATCH v7 00/13] xfs: preparing for online scrub support Darrick J. Wong
2017-06-02 21:24 ` [PATCH 01/13] xfs: optimize _btree_query_all Darrick J. Wong
2017-06-06 13:32 ` Brian Foster
2017-06-06 17:43 ` Darrick J. Wong
2017-06-07 1:18 ` [PATCH v2 " Darrick J. Wong
2017-06-07 14:22 ` Brian Foster
2017-06-02 21:24 ` [PATCH 02/13] xfs: remove double-underscore integer types Darrick J. Wong
2017-06-02 21:24 ` [PATCH 03/13] xfs: always compile the btree inorder check functions Darrick J. Wong
2017-06-06 13:32 ` Brian Foster
2017-06-02 21:24 ` [PATCH 04/13] xfs: export various function for the online scrubber Darrick J. Wong
2017-06-06 13:32 ` Brian Foster
2017-06-02 21:24 ` [PATCH 05/13] xfs: plumb in needed functions for range querying of various btrees Darrick J. Wong
2017-06-06 13:33 ` Brian Foster
2017-06-02 21:24 ` [PATCH 06/13] xfs: export _inobt_btrec_to_irec and _ialloc_cluster_alignment for scrub Darrick J. Wong
2017-06-06 16:27 ` Brian Foster
2017-06-06 17:46 ` Darrick J. Wong
2017-06-02 21:24 ` [PATCH 07/13] xfs: check if an inode is cached and allocated Darrick J. Wong
2017-06-06 16:28 ` Brian Foster
2017-06-06 18:40 ` Darrick J. Wong
2017-06-07 14:22 ` Brian Foster
2017-06-15 5:00 ` Darrick J. Wong
2017-06-07 1:21 ` [PATCH v2 " Darrick J. Wong
2017-06-16 17:59 ` [PATCH v3 " Darrick J. Wong
2017-06-19 12:07 ` Brian Foster
2017-06-02 21:24 ` [PATCH 08/13] xfs: reflink find shared should take a transaction Darrick J. Wong
2017-06-06 16:28 ` Brian Foster
2017-06-02 21:24 ` [PATCH 09/13] xfs: separate function to check if reflink flag needed Darrick J. Wong
2017-06-06 16:28 ` Brian Foster
2017-06-06 18:05 ` Darrick J. Wong
2017-06-07 1:26 ` [PATCH v2 " Darrick J. Wong
2017-06-07 14:22 ` Brian Foster
2017-06-02 21:25 ` [PATCH 10/13] xfs: refactor the ifork block counting function Darrick J. Wong
2017-06-06 16:29 ` Brian Foster
2017-06-06 18:51 ` Darrick J. Wong
2017-06-06 20:35 ` Darrick J. Wong [this message]
2017-06-07 1:29 ` [PATCH v2 9.9/13] xfs: make _bmap_count_blocks consistent wrt delalloc extent behavior Darrick J. Wong
2017-06-07 15:11 ` Brian Foster
2017-06-07 16:19 ` Darrick J. Wong
2017-06-07 1:29 ` [PATCH v2 10/13] xfs: refactor the ifork block counting function Darrick J. Wong
2017-06-07 15:11 ` Brian Foster
2017-06-02 21:25 ` [PATCH 11/13] xfs: return the hash value of a leaf1 directory block Darrick J. Wong
2017-06-08 13:02 ` Brian Foster
2017-06-08 15:53 ` Darrick J. Wong
2017-06-08 16:31 ` Brian Foster
2017-06-08 16:43 ` Darrick J. Wong
2017-06-08 16:52 ` Brian Foster
2017-06-08 18:22 ` [PATCH v2 " Darrick J. Wong
2017-06-09 12:54 ` Brian Foster
2017-06-02 21:25 ` [PATCH 12/13] xfs: pass along transaction context when reading directory block buffers Darrick J. Wong
2017-06-08 13:02 ` Brian Foster
2017-06-02 21:25 ` [PATCH 13/13] xfs: pass along transaction context when reading xattr " Darrick J. Wong
2017-06-08 13:02 ` Brian Foster
2017-06-02 22:19 ` [PATCH 14/13] xfs: allow reading of already-locked remote symbolic link Darrick J. Wong
2017-06-08 13:02 ` Brian Foster
2017-06-26 6:04 ` [PATCH 15/13] xfs: grab dquots without taking the ilock Darrick J. Wong
2017-06-27 11:00 ` Brian Foster
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=20170606203522.GF5196@birch.djwong.org \
--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).