From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Christoph Hellwig <hch@lst.de>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 26/34] xfs: devirtualize ->data_entsize
Date: Mon, 4 Nov 2019 12:45:01 -0800 [thread overview]
Message-ID: <20191104204501.GB4153244@magnolia> (raw)
In-Reply-To: <20191101220719.29100-27-hch@lst.de>
On Fri, Nov 01, 2019 at 03:07:11PM -0700, Christoph Hellwig wrote:
> Replace the ->data_entsize dir ops method with a directly called
> xfs_dir2_data_entsize helper that takes care of the differences between
> the directory format with and without the file type field.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
> fs/xfs/libxfs/xfs_da_format.c | 22 ++++++++--------------
> fs/xfs/libxfs/xfs_dir2.h | 3 +--
> fs/xfs/libxfs/xfs_dir2_block.c | 5 +++--
> fs/xfs/libxfs/xfs_dir2_data.c | 13 ++++++-------
> fs/xfs/libxfs/xfs_dir2_leaf.c | 5 +++--
> fs/xfs/libxfs/xfs_dir2_node.c | 7 ++++---
> fs/xfs/libxfs/xfs_dir2_priv.h | 2 ++
> fs/xfs/libxfs/xfs_dir2_sf.c | 14 +++++++-------
> fs/xfs/scrub/dir.c | 4 ++--
> fs/xfs/xfs_dir2_readdir.c | 9 +++++----
> 10 files changed, 41 insertions(+), 43 deletions(-)
>
> diff --git a/fs/xfs/libxfs/xfs_da_format.c b/fs/xfs/libxfs/xfs_da_format.c
> index 47c56f6dd872..bbff0e7822b8 100644
> --- a/fs/xfs/libxfs/xfs_da_format.c
> +++ b/fs/xfs/libxfs/xfs_da_format.c
> @@ -41,18 +41,15 @@
> sizeof(xfs_dir2_data_off_t) + sizeof(uint8_t)), \
> XFS_DIR2_DATA_ALIGN)
>
> -static int
> +int
> xfs_dir2_data_entsize(
> + struct xfs_mount *mp,
> int n)
@namelen, not just @n?
Oh, you do change that later.
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
--D
> {
> - return XFS_DIR2_DATA_ENTSIZE(n);
> -}
> -
> -static int
> -xfs_dir3_data_entsize(
> - int n)
> -{
> - return XFS_DIR3_DATA_ENTSIZE(n);
> + if (xfs_sb_version_hasftype(&mp->m_sb))
> + return XFS_DIR3_DATA_ENTSIZE(n);
> + else
> + return XFS_DIR2_DATA_ENTSIZE(n);
> }
>
> static uint8_t
> @@ -100,7 +97,7 @@ xfs_dir2_data_entry_tag_p(
> struct xfs_dir2_data_entry *dep)
> {
> return (__be16 *)((char *)dep +
> - xfs_dir2_data_entsize(dep->namelen) - sizeof(__be16));
> + XFS_DIR2_DATA_ENTSIZE(dep->namelen) - sizeof(__be16));
> }
>
> static __be16 *
> @@ -108,7 +105,7 @@ xfs_dir3_data_entry_tag_p(
> struct xfs_dir2_data_entry *dep)
> {
> return (__be16 *)((char *)dep +
> - xfs_dir3_data_entsize(dep->namelen) - sizeof(__be16));
> + XFS_DIR3_DATA_ENTSIZE(dep->namelen) - sizeof(__be16));
> }
>
> static struct xfs_dir2_data_free *
> @@ -124,7 +121,6 @@ xfs_dir3_data_bestfree_p(struct xfs_dir2_data_hdr *hdr)
> }
>
> static const struct xfs_dir_ops xfs_dir2_ops = {
> - .data_entsize = xfs_dir2_data_entsize,
> .data_get_ftype = xfs_dir2_data_get_ftype,
> .data_put_ftype = xfs_dir2_data_put_ftype,
> .data_entry_tag_p = xfs_dir2_data_entry_tag_p,
> @@ -140,7 +136,6 @@ static const struct xfs_dir_ops xfs_dir2_ops = {
> };
>
> static const struct xfs_dir_ops xfs_dir2_ftype_ops = {
> - .data_entsize = xfs_dir3_data_entsize,
> .data_get_ftype = xfs_dir3_data_get_ftype,
> .data_put_ftype = xfs_dir3_data_put_ftype,
> .data_entry_tag_p = xfs_dir3_data_entry_tag_p,
> @@ -156,7 +151,6 @@ static const struct xfs_dir_ops xfs_dir2_ftype_ops = {
> };
>
> static const struct xfs_dir_ops xfs_dir3_ops = {
> - .data_entsize = xfs_dir3_data_entsize,
> .data_get_ftype = xfs_dir3_data_get_ftype,
> .data_put_ftype = xfs_dir3_data_put_ftype,
> .data_entry_tag_p = xfs_dir3_data_entry_tag_p,
> diff --git a/fs/xfs/libxfs/xfs_dir2.h b/fs/xfs/libxfs/xfs_dir2.h
> index e9de15e62630..3fb2c514437a 100644
> --- a/fs/xfs/libxfs/xfs_dir2.h
> +++ b/fs/xfs/libxfs/xfs_dir2.h
> @@ -32,7 +32,6 @@ extern unsigned char xfs_mode_to_ftype(int mode);
> * directory operations vector for encode/decode routines
> */
> struct xfs_dir_ops {
> - int (*data_entsize)(int len);
> uint8_t (*data_get_ftype)(struct xfs_dir2_data_entry *dep);
> void (*data_put_ftype)(struct xfs_dir2_data_entry *dep,
> uint8_t ftype);
> @@ -87,7 +86,7 @@ extern int xfs_dir2_isleaf(struct xfs_da_args *args, int *r);
> extern int xfs_dir2_shrink_inode(struct xfs_da_args *args, xfs_dir2_db_t db,
> struct xfs_buf *bp);
>
> -extern void xfs_dir2_data_freescan_int(struct xfs_da_geometry *geo,
> +extern void xfs_dir2_data_freescan_int(struct xfs_mount *mp,
> const struct xfs_dir_ops *ops,
> struct xfs_dir2_data_hdr *hdr, int *loghead);
> extern void xfs_dir2_data_freescan(struct xfs_inode *dp,
> diff --git a/fs/xfs/libxfs/xfs_dir2_block.c b/fs/xfs/libxfs/xfs_dir2_block.c
> index b32beb71b7b2..709423199369 100644
> --- a/fs/xfs/libxfs/xfs_dir2_block.c
> +++ b/fs/xfs/libxfs/xfs_dir2_block.c
> @@ -355,7 +355,7 @@ xfs_dir2_block_addname(
> if (error)
> return error;
>
> - len = dp->d_ops->data_entsize(args->namelen);
> + len = xfs_dir2_data_entsize(dp->i_mount, args->namelen);
>
> /*
> * Set up pointers to parts of the block.
> @@ -791,7 +791,8 @@ xfs_dir2_block_removename(
> needlog = needscan = 0;
> xfs_dir2_data_make_free(args, bp,
> (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
> - dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
> + xfs_dir2_data_entsize(dp->i_mount, dep->namelen), &needlog,
> + &needscan);
> /*
> * Fix up the block tail.
> */
> diff --git a/fs/xfs/libxfs/xfs_dir2_data.c b/fs/xfs/libxfs/xfs_dir2_data.c
> index edb3fe5c9174..7e3d35f0cdb5 100644
> --- a/fs/xfs/libxfs/xfs_dir2_data.c
> +++ b/fs/xfs/libxfs/xfs_dir2_data.c
> @@ -173,7 +173,7 @@ __xfs_dir3_data_check(
> return __this_address;
> if (xfs_dir_ino_validate(mp, be64_to_cpu(dep->inumber)))
> return __this_address;
> - if (endp < p + ops->data_entsize(dep->namelen))
> + if (endp < p + xfs_dir2_data_entsize(mp, dep->namelen))
> return __this_address;
> if (be16_to_cpu(*ops->data_entry_tag_p(dep)) !=
> (char *)dep - (char *)hdr)
> @@ -198,7 +198,7 @@ __xfs_dir3_data_check(
> if (i >= be32_to_cpu(btp->count))
> return __this_address;
> }
> - p += ops->data_entsize(dep->namelen);
> + p += xfs_dir2_data_entsize(mp, dep->namelen);
> }
> /*
> * Need to have seen all the entries and all the bestfree slots.
> @@ -562,7 +562,7 @@ xfs_dir2_data_freeremove(
> */
> void
> xfs_dir2_data_freescan_int(
> - struct xfs_da_geometry *geo,
> + struct xfs_mount *mp,
> const struct xfs_dir_ops *ops,
> struct xfs_dir2_data_hdr *hdr,
> int *loghead)
> @@ -588,7 +588,7 @@ xfs_dir2_data_freescan_int(
> * Set up pointers.
> */
> p = (char *)hdr + ops->data_entry_offset;
> - endp = xfs_dir3_data_endp(geo, hdr);
> + endp = xfs_dir3_data_endp(mp->m_dir_geo, hdr);
> /*
> * Loop over the block's entries.
> */
> @@ -610,7 +610,7 @@ xfs_dir2_data_freescan_int(
> dep = (xfs_dir2_data_entry_t *)p;
> ASSERT((char *)dep - (char *)hdr ==
> be16_to_cpu(*ops->data_entry_tag_p(dep)));
> - p += ops->data_entsize(dep->namelen);
> + p += xfs_dir2_data_entsize(mp, dep->namelen);
> }
> }
> }
> @@ -621,8 +621,7 @@ xfs_dir2_data_freescan(
> struct xfs_dir2_data_hdr *hdr,
> int *loghead)
> {
> - return xfs_dir2_data_freescan_int(dp->i_mount->m_dir_geo, dp->d_ops,
> - hdr, loghead);
> + return xfs_dir2_data_freescan_int(dp->i_mount, dp->d_ops, hdr, loghead);
> }
>
> /*
> diff --git a/fs/xfs/libxfs/xfs_dir2_leaf.c b/fs/xfs/libxfs/xfs_dir2_leaf.c
> index 3770107c0695..2f7eda3008a6 100644
> --- a/fs/xfs/libxfs/xfs_dir2_leaf.c
> +++ b/fs/xfs/libxfs/xfs_dir2_leaf.c
> @@ -660,7 +660,7 @@ xfs_dir2_leaf_addname(
> xfs_dir2_leaf_hdr_from_disk(dp->i_mount, &leafhdr, leaf);
> ents = leafhdr.ents;
> bestsp = xfs_dir2_leaf_bests_p(ltp);
> - length = dp->d_ops->data_entsize(args->namelen);
> + length = xfs_dir2_data_entsize(dp->i_mount, args->namelen);
>
> /*
> * See if there are any entries with the same hash value
> @@ -1395,7 +1395,8 @@ xfs_dir2_leaf_removename(
> */
> xfs_dir2_data_make_free(args, dbp,
> (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
> - dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
> + xfs_dir2_data_entsize(dp->i_mount, dep->namelen), &needlog,
> + &needscan);
> /*
> * We just mark the leaf entry stale by putting a null in it.
> */
> diff --git a/fs/xfs/libxfs/xfs_dir2_node.c b/fs/xfs/libxfs/xfs_dir2_node.c
> index ceb5936b58dd..d08a11121dee 100644
> --- a/fs/xfs/libxfs/xfs_dir2_node.c
> +++ b/fs/xfs/libxfs/xfs_dir2_node.c
> @@ -662,7 +662,7 @@ xfs_dir2_leafn_lookup_for_addname(
> ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
> free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
> }
> - length = dp->d_ops->data_entsize(args->namelen);
> + length = xfs_dir2_data_entsize(mp, args->namelen);
> /*
> * Loop over leaf entries with the right hash value.
> */
> @@ -1314,7 +1314,8 @@ xfs_dir2_leafn_remove(
> longest = be16_to_cpu(bf[0].length);
> needlog = needscan = 0;
> xfs_dir2_data_make_free(args, dbp, off,
> - dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
> + xfs_dir2_data_entsize(dp->i_mount, dep->namelen), &needlog,
> + &needscan);
> /*
> * Rescan the data block freespaces for bestfree.
> * Log the data block header if needed.
> @@ -1907,7 +1908,7 @@ xfs_dir2_node_addname_int(
> int needscan = 0; /* need to rescan data frees */
> __be16 *tagp; /* data entry tag pointer */
>
> - length = dp->d_ops->data_entsize(args->namelen);
> + length = xfs_dir2_data_entsize(dp->i_mount, args->namelen);
> error = xfs_dir2_node_find_freeblk(args, fblk, &dbno, &fbp, &freehdr,
> &findex, length);
> if (error)
> diff --git a/fs/xfs/libxfs/xfs_dir2_priv.h b/fs/xfs/libxfs/xfs_dir2_priv.h
> index a92d9f0f83e0..585b7b42c204 100644
> --- a/fs/xfs/libxfs/xfs_dir2_priv.h
> +++ b/fs/xfs/libxfs/xfs_dir2_priv.h
> @@ -47,6 +47,8 @@ extern int xfs_dir2_leaf_to_block(struct xfs_da_args *args,
> struct xfs_buf *lbp, struct xfs_buf *dbp);
>
> /* xfs_dir2_data.c */
> +int xfs_dir2_data_entsize(struct xfs_mount *mp, int n);
> +
> #ifdef DEBUG
> extern void xfs_dir3_data_check(struct xfs_inode *dp, struct xfs_buf *bp);
> #else
> diff --git a/fs/xfs/libxfs/xfs_dir2_sf.c b/fs/xfs/libxfs/xfs_dir2_sf.c
> index b2c6c492b09d..4885a0e920c5 100644
> --- a/fs/xfs/libxfs/xfs_dir2_sf.c
> +++ b/fs/xfs/libxfs/xfs_dir2_sf.c
> @@ -341,7 +341,7 @@ xfs_dir2_block_to_sf(
>
> sfep = xfs_dir2_sf_nextentry(mp, sfp, sfep);
> }
> - ptr += dp->d_ops->data_entsize(dep->namelen);
> + ptr += xfs_dir2_data_entsize(mp, dep->namelen);
> }
> ASSERT((char *)sfep - (char *)sfp == size);
>
> @@ -564,10 +564,10 @@ xfs_dir2_sf_addname_hard(
> */
> for (offset = dp->d_ops->data_first_offset,
> oldsfep = xfs_dir2_sf_firstentry(oldsfp),
> - add_datasize = dp->d_ops->data_entsize(args->namelen),
> + add_datasize = xfs_dir2_data_entsize(mp, args->namelen),
> eof = (char *)oldsfep == &buf[old_isize];
> !eof;
> - offset = new_offset + dp->d_ops->data_entsize(oldsfep->namelen),
> + offset = new_offset + xfs_dir2_data_entsize(mp, oldsfep->namelen),
> oldsfep = xfs_dir2_sf_nextentry(mp, oldsfp, oldsfep),
> eof = (char *)oldsfep == &buf[old_isize]) {
> new_offset = xfs_dir2_sf_get_offset(oldsfep);
> @@ -639,7 +639,7 @@ xfs_dir2_sf_addname_pick(
> int used; /* data bytes used */
>
> sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
> - size = dp->d_ops->data_entsize(args->namelen);
> + size = xfs_dir2_data_entsize(mp, args->namelen);
> offset = dp->d_ops->data_first_offset;
> sfep = xfs_dir2_sf_firstentry(sfp);
> holefit = 0;
> @@ -652,7 +652,7 @@ xfs_dir2_sf_addname_pick(
> if (!holefit)
> holefit = offset + size <= xfs_dir2_sf_get_offset(sfep);
> offset = xfs_dir2_sf_get_offset(sfep) +
> - dp->d_ops->data_entsize(sfep->namelen);
> + xfs_dir2_data_entsize(mp, sfep->namelen);
> sfep = xfs_dir2_sf_nextentry(mp, sfp, sfep);
> }
> /*
> @@ -717,7 +717,7 @@ xfs_dir2_sf_check(
> i8count += ino > XFS_DIR2_MAX_SHORT_INUM;
> offset =
> xfs_dir2_sf_get_offset(sfep) +
> - dp->d_ops->data_entsize(sfep->namelen);
> + xfs_dir2_data_entsize(mp, sfep->namelen);
> ASSERT(xfs_dir2_sf_get_ftype(mp, sfep) < XFS_DIR3_FT_MAX);
> }
> ASSERT(i8count == sfp->i8count);
> @@ -817,7 +817,7 @@ xfs_dir2_sf_verify(
> return __this_address;
>
> offset = xfs_dir2_sf_get_offset(sfep) +
> - dops->data_entsize(sfep->namelen);
> + xfs_dir2_data_entsize(mp, sfep->namelen);
>
> sfep = next_sfep;
> }
> diff --git a/fs/xfs/scrub/dir.c b/fs/xfs/scrub/dir.c
> index 8d6ecfe09611..5ddd95f12b85 100644
> --- a/fs/xfs/scrub/dir.c
> +++ b/fs/xfs/scrub/dir.c
> @@ -259,7 +259,7 @@ xchk_dir_rec(
> dep = (struct xfs_dir2_data_entry *)p;
> if (dep == dent)
> break;
> - p += mp->m_dir_inode_ops->data_entsize(dep->namelen);
> + p += xfs_dir2_data_entsize(mp, dep->namelen);
> }
> if (p >= endp) {
> xchk_fblock_set_corrupt(ds->sc, XFS_DATA_FORK, rec_bno);
> @@ -402,7 +402,7 @@ xchk_directory_data_bestfree(
> struct xfs_dir2_data_entry *dep;
>
> dep = (struct xfs_dir2_data_entry *)ptr;
> - newlen = d_ops->data_entsize(dep->namelen);
> + newlen = xfs_dir2_data_entsize(mp, dep->namelen);
> if (newlen <= 0) {
> xchk_fblock_set_corrupt(sc, XFS_DATA_FORK,
> lblk);
> diff --git a/fs/xfs/xfs_dir2_readdir.c b/fs/xfs/xfs_dir2_readdir.c
> index 04f8c2451b93..4cc4102c85f0 100644
> --- a/fs/xfs/xfs_dir2_readdir.c
> +++ b/fs/xfs/xfs_dir2_readdir.c
> @@ -200,7 +200,7 @@ xfs_dir2_block_getdents(
> /*
> * Bump pointer for the next iteration.
> */
> - ptr += dp->d_ops->data_entsize(dep->namelen);
> + ptr += xfs_dir2_data_entsize(dp->i_mount, dep->namelen);
> /*
> * The entry is before the desired starting point, skip it.
> */
> @@ -355,6 +355,7 @@ xfs_dir2_leaf_getdents(
> size_t bufsize)
> {
> struct xfs_inode *dp = args->dp;
> + struct xfs_mount *mp = dp->i_mount;
> struct xfs_buf *bp = NULL; /* data block buffer */
> xfs_dir2_data_hdr_t *hdr; /* data block header */
> xfs_dir2_data_entry_t *dep; /* data entry */
> @@ -432,8 +433,8 @@ xfs_dir2_leaf_getdents(
> continue;
> }
> dep = (xfs_dir2_data_entry_t *)ptr;
> - length =
> - dp->d_ops->data_entsize(dep->namelen);
> + length = xfs_dir2_data_entsize(mp,
> + dep->namelen);
> ptr += length;
> }
> /*
> @@ -464,7 +465,7 @@ xfs_dir2_leaf_getdents(
> }
>
> dep = (xfs_dir2_data_entry_t *)ptr;
> - length = dp->d_ops->data_entsize(dep->namelen);
> + length = xfs_dir2_data_entsize(mp, dep->namelen);
> filetype = dp->d_ops->data_get_ftype(dep);
>
> ctx->pos = xfs_dir2_byte_to_dataptr(curoff) & 0x7fffffff;
> --
> 2.20.1
>
next prev parent reply other threads:[~2019-11-04 20:45 UTC|newest]
Thread overview: 81+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-01 22:06 remove m_dirops Christoph Hellwig
2019-11-01 22:06 ` [PATCH 01/34] xfs: move incore structures out of xfs_da_format.h Christoph Hellwig
2019-11-04 18:21 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 02/34] xfs: refactor btree node scrubbing Christoph Hellwig
2019-11-04 18:36 ` Darrick J. Wong
2019-11-05 1:35 ` Christoph Hellwig
2019-11-01 22:06 ` [PATCH 03/34] xfs: devirtualize ->node_hdr_from_disk Christoph Hellwig
2019-11-04 18:37 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 04/34] xfs: devirtualize ->node_hdr_to_disk Christoph Hellwig
2019-11-04 18:39 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 05/34] xfs: add a btree entries pointer to struct xfs_da3_icnode_hdr Christoph Hellwig
2019-11-04 19:52 ` Darrick J. Wong
2019-11-05 1:38 ` Christoph Hellwig
2019-11-05 1:58 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 06/34] xfs: move the node header size to struct xfs_da_geometry Christoph Hellwig
2019-11-04 19:58 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 07/34] xfs: devirtualize ->leaf_hdr_from_disk Christoph Hellwig
2019-11-04 19:59 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 08/34] xfs: devirtualize ->leaf_hdr_to_disk Christoph Hellwig
2019-11-04 20:00 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 09/34] xfs: add a entries pointer to struct xfs_dir3_icleaf_hdr Christoph Hellwig
2019-11-04 20:04 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 10/34] xfs: move the dir2 leaf header size to struct xfs_da_geometry Christoph Hellwig
2019-11-04 20:05 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 11/34] xfs: move the max dir2 leaf entries count " Christoph Hellwig
2019-11-04 20:07 ` Darrick J. Wong
2019-11-05 1:42 ` Christoph Hellwig
2019-11-05 1:58 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 12/34] xfs: devirtualize ->free_hdr_from_disk Christoph Hellwig
2019-11-04 20:08 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 13/34] xfs: devirtualize ->free_hdr_to_disk Christoph Hellwig
2019-11-04 20:08 ` Darrick J. Wong
2019-11-01 22:06 ` [PATCH 14/34] xfs: make the xfs_dir3_icfree_hdr available to xfs_dir2_node_addname_int Christoph Hellwig
2019-11-04 20:25 ` Darrick J. Wong
2019-11-05 1:52 ` Christoph Hellwig
2019-11-05 1:59 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 15/34] xfs: add a bests pointer to struct xfs_dir3_icfree_hdr Christoph Hellwig
2019-11-04 20:21 ` Darrick J. Wong
2019-11-05 1:44 ` Christoph Hellwig
2019-11-05 2:05 ` Darrick J. Wong
2019-11-05 16:44 ` Christoph Hellwig
2019-11-01 22:07 ` [PATCH 16/34] xfs: move the dir2 free header size to struct xfs_da_geometry Christoph Hellwig
2019-11-04 20:22 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 17/34] xfs: move the max dir2 free bests count " Christoph Hellwig
2019-11-04 20:23 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 18/34] xfs: devirtualize ->db_to_fdb and ->db_to_fdindex Christoph Hellwig
2019-11-04 20:26 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 19/34] xfs: devirtualize ->sf_get_parent_ino and ->sf_put_parent_ino Christoph Hellwig
2019-11-04 20:26 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 20/34] xfs: devirtualize ->sf_entsize and ->sf_nextentry Christoph Hellwig
2019-11-04 20:28 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 21/34] xfs: devirtualize ->sf_get_ino and ->sf_put_ino Christoph Hellwig
2019-11-04 20:33 ` Darrick J. Wong
2019-11-07 1:05 ` Darrick J. Wong
2019-11-07 8:29 ` Christoph Hellwig
2019-11-01 22:07 ` [PATCH 22/34] xfs: devirtualize ->sf_get_ftype and ->sf_put_ftype Christoph Hellwig
2019-11-04 20:34 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 23/34] xfs: remove the ->data_dot_entry_p and ->data_dotdot_entry_p methods Christoph Hellwig
2019-11-04 20:37 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 24/34] xfs: remove the unused ->data_first_entry_p method Christoph Hellwig
2019-11-04 20:38 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 25/34] xfs: remove the ->data_entry_entry_p method Christoph Hellwig
2019-11-04 20:41 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 26/34] xfs: devirtualize ->data_entsize Christoph Hellwig
2019-11-04 20:45 ` Darrick J. Wong [this message]
2019-11-01 22:07 ` [PATCH 27/34] xfs: devirtualize ->data_entry_tag_p Christoph Hellwig
2019-11-04 20:45 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 28/34] xfs: move the dir2 data block fixed offsets to struct xfs_da_geometry Christoph Hellwig
2019-11-04 20:46 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 29/34] xfs: cleanup xfs_dir2_data_entsize Christoph Hellwig
2019-11-04 20:48 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 30/34] xfs: devirtualize ->data_bestfree_p Christoph Hellwig
2019-11-04 20:49 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 31/34] xfs: devirtualize ->data_get_ftype and ->data_put_ftype Christoph Hellwig
2019-11-04 20:50 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 32/34] xfs: remove the now unused dir ops infrastructure Christoph Hellwig
2019-11-04 20:50 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 33/34] xfs: merge xfs_dir2_data_freescan and xfs_dir2_data_freescan_int Christoph Hellwig
2019-11-04 20:51 ` Darrick J. Wong
2019-11-01 22:07 ` [PATCH 34/34] xfs: always pass a valid hdr to xfs_dir3_leaf_check_int Christoph Hellwig
2019-11-04 20:53 ` 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=20191104204501.GB4153244@magnolia \
--to=darrick.wong@oracle.com \
--cc=hch@lst.de \
--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).