From: "Darrick J. Wong" <djwong@kernel.org>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 19/22] xfs: get rid of xfs_dir_ialloc()
Date: Wed, 12 May 2021 16:19:23 -0700 [thread overview]
Message-ID: <20210512231923.GN8582@magnolia> (raw)
In-Reply-To: <20210506072054.271157-20-david@fromorbit.com>
On Thu, May 06, 2021 at 05:20:51PM +1000, Dave Chinner wrote:
> From: Dave Chinner <dchinner@redhat.com>
>
> This is just a simple wrapper around the per-ag inode allocation
> that doesn't need to exist. The internal mechanism to select and
> allocate within an AG does not need to be exposed outside
> xfs_ialloc.c, and it being exposed simply makes it harder to follow
> the code and simplify it.
>
> This is simplified by internalising xf_dialloc_select_ag() and
> xfs_dialloc_ag() into a single xfs_dialloc() function and then
> xfs_dir_ialloc() can go away.
>
> Signed-off-by: Dave Chinner <dchinner@redhat.com>
Aha, I see what you did here with disappearing xfs_dialloc_select_ag.
Ignore my later comments about 5.11 and whatnot.
This'll cause some churn in the metadata directory tree patchset, but
it's not like that hasn't happened 5x before. :P
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
--D
> ---
> fs/xfs/libxfs/xfs_ialloc.c | 15 +++++----
> fs/xfs/libxfs/xfs_ialloc.h | 27 +++-------------
> fs/xfs/xfs_inode.c | 66 +++++++-------------------------------
> fs/xfs/xfs_inode.h | 9 +++---
> fs/xfs/xfs_qm.c | 9 ++++--
> fs/xfs/xfs_symlink.c | 9 ++++--
> 6 files changed, 43 insertions(+), 92 deletions(-)
>
> diff --git a/fs/xfs/libxfs/xfs_ialloc.c b/fs/xfs/libxfs/xfs_ialloc.c
> index b22556556bba..2c0ef2dd46d9 100644
> --- a/fs/xfs/libxfs/xfs_ialloc.c
> +++ b/fs/xfs/libxfs/xfs_ialloc.c
> @@ -1602,24 +1602,23 @@ xfs_ialloc_next_ag(
> * can be allocated, -ENOSPC be returned.
> */
> int
> -xfs_dialloc_select_ag(
> +xfs_dialloc(
> struct xfs_trans **tpp,
> xfs_ino_t parent,
> umode_t mode,
> - struct xfs_buf **IO_agbp)
> + xfs_ino_t *new_ino)
> {
> struct xfs_mount *mp = (*tpp)->t_mountp;
> struct xfs_buf *agbp;
> xfs_agnumber_t agno;
> - int error;
> + int error = 0;
> xfs_agnumber_t start_agno;
> struct xfs_perag *pag;
> struct xfs_ino_geometry *igeo = M_IGEO(mp);
> bool okalloc = true;
> int needspace;
> int flags;
> -
> - *IO_agbp = NULL;
> + xfs_ino_t ino;
>
> /*
> * Files of these types need at least one block if length > 0
> @@ -1763,7 +1762,11 @@ xfs_dialloc_select_ag(
> return error ? error : -ENOSPC;
> found_ag:
> xfs_perag_put(pag);
> - *IO_agbp = agbp;
> + /* Allocate an inode in the found AG */
> + error = xfs_dialloc_ag(*tpp, agbp, parent, &ino);
> + if (error)
> + return error;
> + *new_ino = ino;
> return 0;
> }
>
> diff --git a/fs/xfs/libxfs/xfs_ialloc.h b/fs/xfs/libxfs/xfs_ialloc.h
> index 3511086a7ae1..886f6748fb22 100644
> --- a/fs/xfs/libxfs/xfs_ialloc.h
> +++ b/fs/xfs/libxfs/xfs_ialloc.h
> @@ -33,30 +33,11 @@ xfs_make_iptr(struct xfs_mount *mp, struct xfs_buf *b, int o)
> }
>
> /*
> - * Allocate an inode on disk.
> - * Mode is used to tell whether the new inode will need space, and whether
> - * it is a directory.
> - *
> - * There are two phases to inode allocation: selecting an AG and ensuring
> - * that it contains free inodes, followed by allocating one of the free
> - * inodes. xfs_dialloc_select_ag() does the former and returns a locked AGI
> - * to the caller, ensuring that followup call to xfs_dialloc_ag() will
> - * have free inodes to allocate from. xfs_dialloc_ag() will return the inode
> - * number of the free inode we allocated.
> + * Allocate an inode on disk. Mode is used to tell whether the new inode will
> + * need space, and whether it is a directory.
> */
> -int /* error */
> -xfs_dialloc_select_ag(
> - struct xfs_trans **tpp, /* double pointer of transaction */
> - xfs_ino_t parent, /* parent inode (directory) */
> - umode_t mode, /* mode bits for new inode */
> - struct xfs_buf **IO_agbp);
> -
> -int
> -xfs_dialloc_ag(
> - struct xfs_trans *tp,
> - struct xfs_buf *agbp,
> - xfs_ino_t parent,
> - xfs_ino_t *inop);
> +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
> diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
> index 3918c99fa95b..26668b6846e2 100644
> --- a/fs/xfs/xfs_inode.c
> +++ b/fs/xfs/xfs_inode.c
> @@ -749,7 +749,7 @@ xfs_inode_inherit_flags2(
> * Initialise a newly allocated inode and return the in-core inode to the
> * caller locked exclusively.
> */
> -static int
> +int
> xfs_init_new_inode(
> struct user_namespace *mnt_userns,
> struct xfs_trans *tp,
> @@ -885,54 +885,6 @@ xfs_init_new_inode(
> return 0;
> }
>
> -/*
> - * Allocates a new inode from disk and return a pointer to the incore copy. This
> - * routine will internally commit the current transaction and allocate a new one
> - * if we needed to allocate more on-disk free inodes to perform the requested
> - * operation.
> - *
> - * If we are allocating quota inodes, we do not have a parent inode to attach to
> - * or associate with (i.e. dp == NULL) because they are not linked into the
> - * directory structure - they are attached directly to the superblock - and so
> - * have no parent.
> - */
> -int
> -xfs_dir_ialloc(
> - struct user_namespace *mnt_userns,
> - struct xfs_trans **tpp,
> - struct xfs_inode *dp,
> - umode_t mode,
> - xfs_nlink_t nlink,
> - dev_t rdev,
> - prid_t prid,
> - bool init_xattrs,
> - struct xfs_inode **ipp)
> -{
> - struct xfs_buf *agibp;
> - xfs_ino_t parent_ino = dp ? dp->i_ino : 0;
> - xfs_ino_t ino;
> - int error;
> -
> - ASSERT((*tpp)->t_flags & XFS_TRANS_PERM_LOG_RES);
> -
> - /*
> - * Call the space management code to pick the on-disk inode to be
> - * allocated.
> - */
> - error = xfs_dialloc_select_ag(tpp, parent_ino, mode, &agibp);
> - if (error)
> - return error;
> -
> - /* Allocate an inode from the selected AG */
> - error = xfs_dialloc_ag(*tpp, agibp, parent_ino, &ino);
> - if (error)
> - return error;
> - ASSERT(ino != NULLFSINO);
> -
> - return xfs_init_new_inode(mnt_userns, *tpp, dp, ino, mode, nlink, rdev,
> - prid, init_xattrs, ipp);
> -}
> -
> /*
> * Decrement the link count on an inode & log the change. If this causes the
> * link count to go to zero, move the inode to AGI unlinked list so that it can
> @@ -990,6 +942,7 @@ xfs_create(
> struct xfs_dquot *pdqp = NULL;
> struct xfs_trans_res *tres;
> uint resblks;
> + xfs_ino_t ino;
>
> trace_xfs_create(dp, name);
>
> @@ -1046,14 +999,16 @@ xfs_create(
> * entry pointing to them, but a directory also the "." entry
> * pointing to itself.
> */
> - error = xfs_dir_ialloc(mnt_userns, &tp, dp, mode, is_dir ? 2 : 1, rdev,
> - prid, init_xattrs, &ip);
> + error = xfs_dialloc(&tp, dp->i_ino, mode, &ino);
> + if (!error)
> + error = xfs_init_new_inode(mnt_userns, tp, dp, ino, mode,
> + is_dir ? 2 : 1, rdev, prid, init_xattrs, &ip);
> if (error)
> goto out_trans_cancel;
>
> /*
> * Now we join the directory inode to the transaction. We do not do it
> - * earlier because xfs_dir_ialloc might commit the previous transaction
> + * earlier because xfs_dialloc might commit the previous transaction
> * (and release all the locks). An error from here on will result in
> * the transaction cancel unlocking dp so don't do it explicitly in the
> * error path.
> @@ -1143,6 +1098,7 @@ xfs_create_tmpfile(
> struct xfs_dquot *pdqp = NULL;
> struct xfs_trans_res *tres;
> uint resblks;
> + xfs_ino_t ino;
>
> if (XFS_FORCED_SHUTDOWN(mp))
> return -EIO;
> @@ -1167,8 +1123,10 @@ xfs_create_tmpfile(
> if (error)
> goto out_release_dquots;
>
> - error = xfs_dir_ialloc(mnt_userns, &tp, dp, mode, 0, 0, prid,
> - false, &ip);
> + error = xfs_dialloc(&tp, dp->i_ino, mode, &ino);
> + if (!error)
> + error = xfs_init_new_inode(mnt_userns, tp, dp, ino, mode,
> + 0, 0, prid, false, &ip);
> if (error)
> goto out_trans_cancel;
>
> diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h
> index ca826cfba91c..4b6703dbffb8 100644
> --- a/fs/xfs/xfs_inode.h
> +++ b/fs/xfs/xfs_inode.h
> @@ -431,11 +431,10 @@ void xfs_lock_two_inodes(struct xfs_inode *ip0, uint ip0_mode,
> xfs_extlen_t xfs_get_extsz_hint(struct xfs_inode *ip);
> xfs_extlen_t xfs_get_cowextsz_hint(struct xfs_inode *ip);
>
> -int xfs_dir_ialloc(struct user_namespace *mnt_userns,
> - struct xfs_trans **tpp, struct xfs_inode *dp,
> - umode_t mode, xfs_nlink_t nlink, dev_t dev,
> - prid_t prid, bool need_xattr,
> - struct xfs_inode **ipp);
> +int xfs_init_new_inode(struct user_namespace *mnt_userns, struct xfs_trans *tp,
> + struct xfs_inode *pip, xfs_ino_t ino, umode_t mode,
> + xfs_nlink_t nlink, dev_t rdev, prid_t prid, bool init_xattrs,
> + struct xfs_inode **ipp);
>
> static inline int
> xfs_itruncate_extents(
> diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c
> index f7baf4dc2554..fe341f3fd419 100644
> --- a/fs/xfs/xfs_qm.c
> +++ b/fs/xfs/xfs_qm.c
> @@ -24,6 +24,7 @@
> #include "xfs_icache.h"
> #include "xfs_error.h"
> #include "xfs_ag.h"
> +#include "xfs_ialloc.h"
>
> /*
> * The global quota manager. There is only one of these for the entire
> @@ -788,8 +789,12 @@ xfs_qm_qino_alloc(
> return error;
>
> if (need_alloc) {
> - error = xfs_dir_ialloc(&init_user_ns, &tp, NULL, S_IFREG, 1, 0,
> - 0, false, ipp);
> + xfs_ino_t ino;
> +
> + error = xfs_dialloc(&tp, 0, S_IFREG, &ino);
> + if (!error)
> + error = xfs_init_new_inode(&init_user_ns, tp, NULL, ino,
> + S_IFREG, 1, 0, 0, false, ipp);
> if (error) {
> xfs_trans_cancel(tp);
> return error;
> diff --git a/fs/xfs/xfs_symlink.c b/fs/xfs/xfs_symlink.c
> index b4fa70282383..44596c31f4c9 100644
> --- a/fs/xfs/xfs_symlink.c
> +++ b/fs/xfs/xfs_symlink.c
> @@ -21,6 +21,7 @@
> #include "xfs_trans_space.h"
> #include "xfs_trace.h"
> #include "xfs_trans.h"
> +#include "xfs_ialloc.h"
>
> /* ----- Kernel only functions below ----- */
> int
> @@ -161,6 +162,7 @@ xfs_symlink(
> struct xfs_dquot *gdqp = NULL;
> struct xfs_dquot *pdqp = NULL;
> uint resblks;
> + xfs_ino_t ino;
>
> *ipp = NULL;
>
> @@ -223,8 +225,11 @@ xfs_symlink(
> /*
> * Allocate an inode for the symlink.
> */
> - error = xfs_dir_ialloc(mnt_userns, &tp, dp, S_IFLNK | (mode & ~S_IFMT),
> - 1, 0, prid, false, &ip);
> + error = xfs_dialloc(&tp, dp->i_ino, S_IFLNK, &ino);
> + if (!error)
> + error = xfs_init_new_inode(mnt_userns, tp, dp, ino,
> + S_IFLNK | (mode & ~S_IFMT), 1, 0, prid,
> + false, &ip);
> if (error)
> goto out_trans_cancel;
>
> --
> 2.31.1
>
next prev parent reply other threads:[~2021-05-12 23:44 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 [this message]
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
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=20210512231923.GN8582@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