From: "Darrick J. Wong" <djwong@kernel.org>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 22/22] xfs: use perag through unlink processing
Date: Wed, 12 May 2021 14:37:20 -0700 [thread overview]
Message-ID: <20210512213720.GY8582@magnolia> (raw)
In-Reply-To: <20210506072054.271157-23-david@fromorbit.com>
On Thu, May 06, 2021 at 05:20:54PM +1000, Dave Chinner wrote:
> From: Dave Chinner <dchinner@redhat.com>
>
> Unlinked lists are held in the perag, and freeing of inodes needs to
> be passed a perag, too, so look up the perag early in the unlink
> processing and use it throughout.
>
> Signed-off-by: Dave Chinner <dchinner@redhat.com>
Looks like a fairly straightforward conversion...
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
--D
> ---
> fs/xfs/libxfs/xfs_ialloc.c | 23 +++----
> fs/xfs/libxfs/xfs_ialloc.h | 13 +---
> fs/xfs/xfs_inode.c | 131 +++++++++++++++++++++----------------
> 3 files changed, 87 insertions(+), 80 deletions(-)
>
> diff --git a/fs/xfs/libxfs/xfs_ialloc.c b/fs/xfs/libxfs/xfs_ialloc.c
> index 340bb95d7bc1..be84820588c6 100644
> --- a/fs/xfs/libxfs/xfs_ialloc.c
> +++ b/fs/xfs/libxfs/xfs_ialloc.c
> @@ -2133,35 +2133,33 @@ xfs_difree_finobt(
> */
> int
> xfs_difree(
> - struct xfs_trans *tp, /* transaction pointer */
> - xfs_ino_t inode, /* inode to be freed */
> - struct xfs_icluster *xic) /* cluster info if deleted */
> + struct xfs_trans *tp,
> + struct xfs_perag *pag,
> + xfs_ino_t inode,
> + struct xfs_icluster *xic)
> {
> /* REFERENCED */
> xfs_agblock_t agbno; /* block number containing inode */
> struct xfs_buf *agbp; /* buffer for allocation group header */
> xfs_agino_t agino; /* allocation group inode number */
> - xfs_agnumber_t agno; /* allocation group number */
> int error; /* error return value */
> struct xfs_mount *mp = tp->t_mountp;
> struct xfs_inobt_rec_incore rec;/* btree record */
> - struct xfs_perag *pag;
>
> /*
> * Break up inode number into its components.
> */
> - agno = XFS_INO_TO_AGNO(mp, inode);
> - if (agno >= mp->m_sb.sb_agcount) {
> - xfs_warn(mp, "%s: agno >= mp->m_sb.sb_agcount (%d >= %d).",
> - __func__, agno, mp->m_sb.sb_agcount);
> + if (pag->pag_agno != XFS_INO_TO_AGNO(mp, inode)) {
> + xfs_warn(mp, "%s: agno != pag->pag_agno (%d != %d).",
> + __func__, XFS_INO_TO_AGNO(mp, inode), pag->pag_agno);
> ASSERT(0);
> return -EINVAL;
> }
> agino = XFS_INO_TO_AGINO(mp, inode);
> - if (inode != XFS_AGINO_TO_INO(mp, agno, agino)) {
> + if (inode != XFS_AGINO_TO_INO(mp, pag->pag_agno, agino)) {
> xfs_warn(mp, "%s: inode != XFS_AGINO_TO_INO() (%llu != %llu).",
> __func__, (unsigned long long)inode,
> - (unsigned long long)XFS_AGINO_TO_INO(mp, agno, agino));
> + (unsigned long long)XFS_AGINO_TO_INO(mp, pag->pag_agno, agino));
> ASSERT(0);
> return -EINVAL;
> }
> @@ -2175,7 +2173,7 @@ xfs_difree(
> /*
> * Get the allocation group header.
> */
> - error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
> + error = xfs_ialloc_read_agi(mp, tp, pag->pag_agno, &agbp);
> if (error) {
> xfs_warn(mp, "%s: xfs_ialloc_read_agi() returned error %d.",
> __func__, error);
> @@ -2185,7 +2183,6 @@ xfs_difree(
> /*
> * Fix up the inode allocation btree.
> */
> - pag = agbp->b_pag;
> error = xfs_difree_inobt(mp, tp, agbp, pag, agino, xic, &rec);
> if (error)
> goto error0;
> diff --git a/fs/xfs/libxfs/xfs_ialloc.h b/fs/xfs/libxfs/xfs_ialloc.h
> index 886f6748fb22..9df7c80408ff 100644
> --- a/fs/xfs/libxfs/xfs_ialloc.h
> +++ b/fs/xfs/libxfs/xfs_ialloc.h
> @@ -39,17 +39,8 @@ xfs_make_iptr(struct xfs_mount *mp, struct xfs_buf *b, int o)
> int xfs_dialloc(struct xfs_trans **tpp, xfs_ino_t parent, umode_t mode,
> xfs_ino_t *new_ino);
>
> -/*
> - * Free disk inode. Carefully avoids touching the incore inode, all
> - * manipulations incore are the caller's responsibility.
> - * The on-disk inode is not changed by this operation, only the
> - * btree (free inode mask) is changed.
> - */
> -int /* error */
> -xfs_difree(
> - struct xfs_trans *tp, /* transaction pointer */
> - xfs_ino_t inode, /* inode to be freed */
> - struct xfs_icluster *ifree); /* cluster info if deleted */
> +int xfs_difree(struct xfs_trans *tp, struct xfs_perag *pag,
> + xfs_ino_t ino, struct xfs_icluster *ifree);
>
> /*
> * Return the location of the inode in imap, for mapping it into a buffer.
> diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
> index 26668b6846e2..aad98a982382 100644
> --- a/fs/xfs/xfs_inode.c
> +++ b/fs/xfs/xfs_inode.c
> @@ -45,7 +45,8 @@ kmem_zone_t *xfs_inode_zone;
> #define XFS_ITRUNC_MAX_EXTENTS 2
>
> STATIC int xfs_iunlink(struct xfs_trans *, struct xfs_inode *);
> -STATIC int xfs_iunlink_remove(struct xfs_trans *, struct xfs_inode *);
> +STATIC int xfs_iunlink_remove(struct xfs_trans *tp, struct xfs_perag *pag,
> + struct xfs_inode *);
>
> /*
> * helper function to extract extent size hint from inode
> @@ -1241,7 +1242,11 @@ xfs_link(
> * Handle initial link state of O_TMPFILE inode
> */
> if (VFS_I(sip)->i_nlink == 0) {
> - error = xfs_iunlink_remove(tp, sip);
> + struct xfs_perag *pag;
> +
> + pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, sip->i_ino));
> + error = xfs_iunlink_remove(tp, pag, sip);
> + xfs_perag_put(pag);
> if (error)
> goto error_return;
> }
> @@ -1934,7 +1939,7 @@ xfs_iunlink_destroy(
> STATIC int
> xfs_iunlink_update_bucket(
> struct xfs_trans *tp,
> - xfs_agnumber_t agno,
> + struct xfs_perag *pag,
> struct xfs_buf *agibp,
> unsigned int bucket_index,
> xfs_agino_t new_agino)
> @@ -1943,10 +1948,10 @@ xfs_iunlink_update_bucket(
> xfs_agino_t old_value;
> int offset;
>
> - ASSERT(xfs_verify_agino_or_null(tp->t_mountp, agno, new_agino));
> + ASSERT(xfs_verify_agino_or_null(tp->t_mountp, pag->pag_agno, new_agino));
>
> old_value = be32_to_cpu(agi->agi_unlinked[bucket_index]);
> - trace_xfs_iunlink_update_bucket(tp->t_mountp, agno, bucket_index,
> + trace_xfs_iunlink_update_bucket(tp->t_mountp, pag->pag_agno, bucket_index,
> old_value, new_agino);
>
> /*
> @@ -1970,7 +1975,7 @@ xfs_iunlink_update_bucket(
> STATIC void
> xfs_iunlink_update_dinode(
> struct xfs_trans *tp,
> - xfs_agnumber_t agno,
> + struct xfs_perag *pag,
> xfs_agino_t agino,
> struct xfs_buf *ibp,
> struct xfs_dinode *dip,
> @@ -1980,9 +1985,9 @@ xfs_iunlink_update_dinode(
> struct xfs_mount *mp = tp->t_mountp;
> int offset;
>
> - ASSERT(xfs_verify_agino_or_null(mp, agno, next_agino));
> + ASSERT(xfs_verify_agino_or_null(mp, pag->pag_agno, next_agino));
>
> - trace_xfs_iunlink_update_dinode(mp, agno, agino,
> + trace_xfs_iunlink_update_dinode(mp, pag->pag_agno, agino,
> be32_to_cpu(dip->di_next_unlinked), next_agino);
>
> dip->di_next_unlinked = cpu_to_be32(next_agino);
> @@ -2000,7 +2005,7 @@ STATIC int
> xfs_iunlink_update_inode(
> struct xfs_trans *tp,
> struct xfs_inode *ip,
> - xfs_agnumber_t agno,
> + struct xfs_perag *pag,
> xfs_agino_t next_agino,
> xfs_agino_t *old_next_agino)
> {
> @@ -2010,7 +2015,7 @@ xfs_iunlink_update_inode(
> xfs_agino_t old_value;
> int error;
>
> - ASSERT(xfs_verify_agino_or_null(mp, agno, next_agino));
> + ASSERT(xfs_verify_agino_or_null(mp, pag->pag_agno, next_agino));
>
> error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &ibp);
> if (error)
> @@ -2019,7 +2024,7 @@ xfs_iunlink_update_inode(
>
> /* Make sure the old pointer isn't garbage. */
> old_value = be32_to_cpu(dip->di_next_unlinked);
> - if (!xfs_verify_agino_or_null(mp, agno, old_value)) {
> + if (!xfs_verify_agino_or_null(mp, pag->pag_agno, old_value)) {
> xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__, dip,
> sizeof(*dip), __this_address);
> error = -EFSCORRUPTED;
> @@ -2042,7 +2047,7 @@ xfs_iunlink_update_inode(
> }
>
> /* Ok, update the new pointer. */
> - xfs_iunlink_update_dinode(tp, agno, XFS_INO_TO_AGINO(mp, ip->i_ino),
> + xfs_iunlink_update_dinode(tp, pag, XFS_INO_TO_AGINO(mp, ip->i_ino),
> ibp, dip, &ip->i_imap, next_agino);
> return 0;
> out:
> @@ -2063,10 +2068,10 @@ xfs_iunlink(
> struct xfs_inode *ip)
> {
> struct xfs_mount *mp = tp->t_mountp;
> + struct xfs_perag *pag;
> struct xfs_agi *agi;
> struct xfs_buf *agibp;
> xfs_agino_t next_agino;
> - xfs_agnumber_t agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
> xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
> short bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
> int error;
> @@ -2075,10 +2080,12 @@ xfs_iunlink(
> ASSERT(VFS_I(ip)->i_mode != 0);
> trace_xfs_iunlink(ip);
>
> + pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
> +
> /* Get the agi buffer first. It ensures lock ordering on the list. */
> - error = xfs_read_agi(mp, tp, agno, &agibp);
> + error = xfs_read_agi(mp, tp, pag->pag_agno, &agibp);
> if (error)
> - return error;
> + goto out;
> agi = agibp->b_addr;
>
> /*
> @@ -2088,9 +2095,10 @@ xfs_iunlink(
> */
> next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
> if (next_agino == agino ||
> - !xfs_verify_agino_or_null(mp, agno, next_agino)) {
> + !xfs_verify_agino_or_null(mp, pag->pag_agno, next_agino)) {
> xfs_buf_mark_corrupt(agibp);
> - return -EFSCORRUPTED;
> + error = -EFSCORRUPTED;
> + goto out;
> }
>
> if (next_agino != NULLAGINO) {
> @@ -2100,23 +2108,26 @@ xfs_iunlink(
> * There is already another inode in the bucket, so point this
> * inode to the current head of the list.
> */
> - error = xfs_iunlink_update_inode(tp, ip, agno, next_agino,
> + error = xfs_iunlink_update_inode(tp, ip, pag, next_agino,
> &old_agino);
> if (error)
> - return error;
> + goto out;
> ASSERT(old_agino == NULLAGINO);
>
> /*
> * agino has been unlinked, add a backref from the next inode
> * back to agino.
> */
> - error = xfs_iunlink_add_backref(agibp->b_pag, agino, next_agino);
> + error = xfs_iunlink_add_backref(pag, agino, next_agino);
> if (error)
> - return error;
> + goto out;
> }
>
> /* Point the head of the list to point to this inode. */
> - return xfs_iunlink_update_bucket(tp, agno, agibp, bucket_index, agino);
> + error = xfs_iunlink_update_bucket(tp, pag, agibp, bucket_index, agino);
> +out:
> + xfs_perag_put(pag);
> + return error;
> }
>
> /* Return the imap, dinode pointer, and buffer for an inode. */
> @@ -2164,14 +2175,13 @@ xfs_iunlink_map_ino(
> STATIC int
> xfs_iunlink_map_prev(
> struct xfs_trans *tp,
> - xfs_agnumber_t agno,
> + struct xfs_perag *pag,
> xfs_agino_t head_agino,
> xfs_agino_t target_agino,
> xfs_agino_t *agino,
> struct xfs_imap *imap,
> struct xfs_dinode **dipp,
> - struct xfs_buf **bpp,
> - struct xfs_perag *pag)
> + struct xfs_buf **bpp)
> {
> struct xfs_mount *mp = tp->t_mountp;
> xfs_agino_t next_agino;
> @@ -2183,7 +2193,8 @@ xfs_iunlink_map_prev(
> /* See if our backref cache can find it faster. */
> *agino = xfs_iunlink_lookup_backref(pag, target_agino);
> if (*agino != NULLAGINO) {
> - error = xfs_iunlink_map_ino(tp, agno, *agino, imap, dipp, bpp);
> + error = xfs_iunlink_map_ino(tp, pag->pag_agno, *agino, imap,
> + dipp, bpp);
> if (error)
> return error;
>
> @@ -2199,7 +2210,7 @@ xfs_iunlink_map_prev(
> WARN_ON_ONCE(1);
> }
>
> - trace_xfs_iunlink_map_prev_fallback(mp, agno);
> + trace_xfs_iunlink_map_prev_fallback(mp, pag->pag_agno);
>
> /* Otherwise, walk the entire bucket until we find it. */
> next_agino = head_agino;
> @@ -2210,8 +2221,8 @@ xfs_iunlink_map_prev(
> xfs_trans_brelse(tp, *bpp);
>
> *agino = next_agino;
> - error = xfs_iunlink_map_ino(tp, agno, next_agino, imap, dipp,
> - bpp);
> + error = xfs_iunlink_map_ino(tp, pag->pag_agno, next_agino, imap,
> + dipp, bpp);
> if (error)
> return error;
>
> @@ -2220,7 +2231,7 @@ xfs_iunlink_map_prev(
> * Make sure this pointer is valid and isn't an obvious
> * infinite loop.
> */
> - if (!xfs_verify_agino(mp, agno, unlinked_agino) ||
> + if (!xfs_verify_agino(mp, pag->pag_agno, unlinked_agino) ||
> next_agino == unlinked_agino) {
> XFS_CORRUPTION_ERROR(__func__,
> XFS_ERRLEVEL_LOW, mp,
> @@ -2240,6 +2251,7 @@ xfs_iunlink_map_prev(
> STATIC int
> xfs_iunlink_remove(
> struct xfs_trans *tp,
> + struct xfs_perag *pag,
> struct xfs_inode *ip)
> {
> struct xfs_mount *mp = tp->t_mountp;
> @@ -2247,7 +2259,6 @@ xfs_iunlink_remove(
> struct xfs_buf *agibp;
> struct xfs_buf *last_ibp;
> struct xfs_dinode *last_dip = NULL;
> - xfs_agnumber_t agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
> xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
> xfs_agino_t next_agino;
> xfs_agino_t head_agino;
> @@ -2257,7 +2268,7 @@ xfs_iunlink_remove(
> trace_xfs_iunlink_remove(ip);
>
> /* Get the agi buffer first. It ensures lock ordering on the list. */
> - error = xfs_read_agi(mp, tp, agno, &agibp);
> + error = xfs_read_agi(mp, tp, pag->pag_agno, &agibp);
> if (error)
> return error;
> agi = agibp->b_addr;
> @@ -2267,7 +2278,7 @@ xfs_iunlink_remove(
> * go on. Make sure the head pointer isn't garbage.
> */
> head_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
> - if (!xfs_verify_agino(mp, agno, head_agino)) {
> + if (!xfs_verify_agino(mp, pag->pag_agno, head_agino)) {
> XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp,
> agi, sizeof(*agi));
> return -EFSCORRUPTED;
> @@ -2278,7 +2289,7 @@ xfs_iunlink_remove(
> * the old pointer value so that we can update whatever was previous
> * to us in the list to point to whatever was next in the list.
> */
> - error = xfs_iunlink_update_inode(tp, ip, agno, NULLAGINO, &next_agino);
> + error = xfs_iunlink_update_inode(tp, ip, pag, NULLAGINO, &next_agino);
> if (error)
> return error;
>
> @@ -2290,8 +2301,7 @@ xfs_iunlink_remove(
> * this inode's backref to point from the next inode.
> */
> if (next_agino != NULLAGINO) {
> - error = xfs_iunlink_change_backref(agibp->b_pag, next_agino,
> - NULLAGINO);
> + error = xfs_iunlink_change_backref(pag, next_agino, NULLAGINO);
> if (error)
> return error;
> }
> @@ -2301,14 +2311,13 @@ xfs_iunlink_remove(
> xfs_agino_t prev_agino;
>
> /* We need to search the list for the inode being freed. */
> - error = xfs_iunlink_map_prev(tp, agno, head_agino, agino,
> - &prev_agino, &imap, &last_dip, &last_ibp,
> - agibp->b_pag);
> + error = xfs_iunlink_map_prev(tp, pag, head_agino, agino,
> + &prev_agino, &imap, &last_dip, &last_ibp);
> if (error)
> return error;
>
> /* Point the previous inode on the list to the next inode. */
> - xfs_iunlink_update_dinode(tp, agno, prev_agino, last_ibp,
> + xfs_iunlink_update_dinode(tp, pag, prev_agino, last_ibp,
> last_dip, &imap, next_agino);
>
> /*
> @@ -2324,7 +2333,7 @@ xfs_iunlink_remove(
> }
>
> /* Point the head of the list to the next unlinked inode. */
> - return xfs_iunlink_update_bucket(tp, agno, agibp, bucket_index,
> + return xfs_iunlink_update_bucket(tp, pag, agibp, bucket_index,
> next_agino);
> }
>
> @@ -2335,12 +2344,11 @@ xfs_iunlink_remove(
> */
> static void
> xfs_ifree_mark_inode_stale(
> - struct xfs_buf *bp,
> + struct xfs_perag *pag,
> struct xfs_inode *free_ip,
> xfs_ino_t inum)
> {
> - struct xfs_mount *mp = bp->b_mount;
> - struct xfs_perag *pag = bp->b_pag;
> + struct xfs_mount *mp = pag->pag_mount;
> struct xfs_inode_log_item *iip;
> struct xfs_inode *ip;
>
> @@ -2430,10 +2438,11 @@ xfs_ifree_mark_inode_stale(
> * inodes that are in memory - they all must be marked stale and attached to
> * the cluster buffer.
> */
> -STATIC int
> +static int
> xfs_ifree_cluster(
> - struct xfs_inode *free_ip,
> struct xfs_trans *tp,
> + struct xfs_perag *pag,
> + struct xfs_inode *free_ip,
> struct xfs_icluster *xic)
> {
> struct xfs_mount *mp = free_ip->i_mount;
> @@ -2495,7 +2504,7 @@ xfs_ifree_cluster(
> * already marked XFS_ISTALE.
> */
> for (i = 0; i < igeo->inodes_per_cluster; i++)
> - xfs_ifree_mark_inode_stale(bp, free_ip, inum + i);
> + xfs_ifree_mark_inode_stale(pag, free_ip, inum + i);
>
> xfs_trans_stale_inode_buf(tp, bp);
> xfs_trans_binval(tp, bp);
> @@ -2518,9 +2527,11 @@ xfs_ifree(
> struct xfs_trans *tp,
> struct xfs_inode *ip)
> {
> - int error;
> + struct xfs_mount *mp = ip->i_mount;
> + struct xfs_perag *pag;
> struct xfs_icluster xic = { 0 };
> struct xfs_inode_log_item *iip = ip->i_itemp;
> + int error;
>
> ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
> ASSERT(VFS_I(ip)->i_nlink == 0);
> @@ -2528,16 +2539,18 @@ xfs_ifree(
> ASSERT(ip->i_disk_size == 0 || !S_ISREG(VFS_I(ip)->i_mode));
> ASSERT(ip->i_nblocks == 0);
>
> + pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
> +
> /*
> * Pull the on-disk inode from the AGI unlinked list.
> */
> - error = xfs_iunlink_remove(tp, ip);
> + error = xfs_iunlink_remove(tp, pag, ip);
> if (error)
> - return error;
> + goto out;
>
> - error = xfs_difree(tp, ip->i_ino, &xic);
> + error = xfs_difree(tp, pag, ip->i_ino, &xic);
> if (error)
> - return error;
> + goto out;
>
> /*
> * Free any local-format data sitting around before we reset the
> @@ -2552,7 +2565,7 @@ xfs_ifree(
>
> VFS_I(ip)->i_mode = 0; /* mark incore inode as free */
> ip->i_diflags = 0;
> - ip->i_diflags2 = ip->i_mount->m_ino_geo.new_diflags2;
> + ip->i_diflags2 = mp->m_ino_geo.new_diflags2;
> ip->i_forkoff = 0; /* mark the attr fork not in use */
> ip->i_df.if_format = XFS_DINODE_FMT_EXTENTS;
> if (xfs_iflags_test(ip, XFS_IPRESERVE_DM_FIELDS))
> @@ -2571,8 +2584,9 @@ xfs_ifree(
> xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
>
> if (xic.deleted)
> - error = xfs_ifree_cluster(ip, tp, &xic);
> -
> + error = xfs_ifree_cluster(tp, pag, ip, &xic);
> +out:
> + xfs_perag_put(pag);
> return error;
> }
>
> @@ -3176,8 +3190,13 @@ xfs_rename(
> * in future.
> */
> if (wip) {
> + struct xfs_perag *pag;
> +
> ASSERT(VFS_I(wip)->i_nlink == 0);
> - error = xfs_iunlink_remove(tp, wip);
> +
> + pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, wip->i_ino));
> + error = xfs_iunlink_remove(tp, pag, wip);
> + xfs_perag_put(pag);
> if (error)
> goto out_trans_cancel;
>
> --
> 2.31.1
>
prev parent reply other threads:[~2021-05-12 22:42 UTC|newest]
Thread overview: 85+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-06 7:20 [RFC 00/22] xfs: initial agnumber -> perag conversions for shrink Dave Chinner
2021-05-06 7:20 ` [PATCH 01/22] xfs: move xfs_perag_get/put to xfs_ag.[ch] Dave Chinner
2021-05-10 12:52 ` Brian Foster
2021-05-11 7:18 ` Dave Chinner
2021-05-10 22:28 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 02/22] xfs: prepare for moving perag definitions and support to libxfs Dave Chinner
2021-05-10 12:53 ` Brian Foster
2021-05-11 7:19 ` Dave Chinner
2021-05-06 7:20 ` [PATCH 03/22] xfs: move perag structure and setup to libxfs/xfs_ag.[ch] Dave Chinner
2021-05-10 22:26 ` Darrick J. Wong
2021-05-10 23:38 ` Dave Chinner
2021-05-06 7:20 ` [PATCH 04/22] xfs: make for_each_perag... a first class citizen Dave Chinner
2021-05-10 12:53 ` Brian Foster
2021-05-11 7:35 ` Dave Chinner
2021-05-11 12:29 ` Brian Foster
2021-05-11 21:33 ` Dave Chinner
2021-05-12 21:58 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 05/22] xfs: convert raw ag walks to use for_each_perag Dave Chinner
2021-05-10 12:54 ` Brian Foster
2021-05-06 7:20 ` [PATCH 06/22] xfs: convert xfs_iwalk to use perag references Dave Chinner
2021-05-10 13:41 ` Brian Foster
2021-05-12 22:08 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 07/22] xfs: convert secondary superblock walk to use perags Dave Chinner
2021-05-10 13:41 ` Brian Foster
2021-05-12 22:09 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 08/22] xfs: pass perags through to the busy extent code Dave Chinner
2021-05-11 12:29 ` Brian Foster
2021-05-12 22:13 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 09/22] xfs: push perags through the ag reservation callouts Dave Chinner
2021-05-11 12:29 ` Brian Foster
2021-05-13 0:29 ` Dave Chinner
2021-05-12 22:16 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 10/22] xfs: pass perags around in fsmap data dev functions Dave Chinner
2021-05-11 12:30 ` Brian Foster
2021-05-12 22:23 ` Darrick J. Wong
2021-05-18 1:00 ` Dave Chinner
2021-05-06 7:20 ` [PATCH 11/22] xfs: add a perag to the btree cursor Dave Chinner
2021-05-11 12:30 ` Brian Foster
2021-05-11 20:51 ` Darrick J. Wong
2021-05-11 21:52 ` Dave Chinner
2021-05-12 12:49 ` Brian Foster
2021-05-12 22:41 ` Darrick J. Wong
2021-05-12 22:40 ` Darrick J. Wong
2021-05-13 0:12 ` Dave Chinner
2021-05-13 0:55 ` Darrick J. Wong
2021-05-13 1:07 ` Dave Chinner
2021-05-13 3:49 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 12/22] xfs: convert rmap btree cursor to using a perag Dave Chinner
2021-05-11 12:30 ` Brian Foster
2021-05-12 22:45 ` Darrick J. Wong
2021-05-13 3:54 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 13/22] xfs: convert refcount btree cursor to use perags Dave Chinner
2021-05-11 12:30 ` Brian Foster
2021-05-12 22:47 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 14/22] xfs: convert allocbt cursors " Dave Chinner
2021-05-11 12:30 ` Brian Foster
2021-05-13 3:55 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 15/22] xfs: use perag for ialloc btree cursors Dave Chinner
2021-05-11 12:30 ` Brian Foster
2021-05-13 3:55 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 16/22] xfs: remove agno from btree cursor Dave Chinner
2021-05-11 12:34 ` Brian Foster
2021-05-11 22:02 ` Dave Chinner
2021-05-12 22:52 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 17/22] xfs: simplify xfs_dialloc_select_ag() return values Dave Chinner
2021-05-12 12:49 ` Brian Foster
2021-05-12 22:55 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 18/22] xfs: collapse AG selection for inode allocation Dave Chinner
2021-05-12 12:52 ` Brian Foster
2021-05-18 1:21 ` Dave Chinner
2021-05-12 23:11 ` Darrick J. Wong
2021-05-18 1:29 ` Dave Chinner
2021-05-06 7:20 ` [PATCH 19/22] xfs: get rid of xfs_dir_ialloc() Dave Chinner
2021-05-06 11:26 ` kernel test robot
2021-05-06 11:26 ` [RFC PATCH] xfs: xfs_dialloc_ag can be static kernel test robot
2021-05-12 12:52 ` [PATCH 19/22] xfs: get rid of xfs_dir_ialloc() Brian Foster
2021-05-12 23:19 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 20/22] xfs: inode allocation can use a single perag instance Dave Chinner
2021-05-12 12:52 ` Brian Foster
2021-05-12 23:19 ` Darrick J. Wong
2021-05-06 7:20 ` [PATCH 21/22] xfs: clean up and simplify xfs_dialloc() Dave Chinner
2021-05-12 21:49 ` Darrick J. Wong
2021-05-18 1:46 ` Dave Chinner
2021-05-06 7:20 ` [PATCH 22/22] xfs: use perag through unlink processing Dave Chinner
2021-05-12 21:37 ` 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=20210512213720.GY8582@magnolia \
--to=djwong@kernel.org \
--cc=david@fromorbit.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