All of lore.kernel.org
 help / color / mirror / Atom feed
From: Allison Collins <allison.henderson@oracle.com>
To: linux-xfs@vger.kernel.org
Subject: [PATCH v12 18/32] xfsprogs: Add helper function xfs_attr_node_removename_setup
Date: Wed, 26 Aug 2020 17:28:42 -0700	[thread overview]
Message-ID: <20200827002856.1131-19-allison.henderson@oracle.com> (raw)
In-Reply-To: <20200827002856.1131-1-allison.henderson@oracle.com>

This patch adds a new helper function xfs_attr_node_removename_setup.
This will help modularize xfs_attr_node_removename when we add delay
ready attributes later.

Signed-off-by: Allison Collins <allison.henderson@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Chandan Rajendra <chandanrlinux@gmail.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
---
 libxfs/xfs_attr.c | 47 ++++++++++++++++++++++++++++++++++-------------
 1 file changed, 34 insertions(+), 13 deletions(-)

diff --git a/libxfs/xfs_attr.c b/libxfs/xfs_attr.c
index 6f9fa9e..4d1ab1e 100644
--- a/libxfs/xfs_attr.c
+++ b/libxfs/xfs_attr.c
@@ -1174,6 +1174,38 @@ xfs_attr_leaf_mark_incomplete(
 }
 
 /*
+ * Initial setup for xfs_attr_node_removename.  Make sure the attr is there and
+ * the blocks are valid.  Attr keys with remote blocks will be marked
+ * incomplete.
+ */
+STATIC
+int xfs_attr_node_removename_setup(
+	struct xfs_da_args	*args,
+	struct xfs_da_state	**state)
+{
+	int			error;
+	struct xfs_da_state_blk	*blk;
+
+	error = xfs_attr_node_hasname(args, state);
+	if (error != -EEXIST)
+		return error;
+
+	blk = &(*state)->path.blk[(*state)->path.active - 1];
+	ASSERT(blk->bp != NULL);
+	ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
+
+	if (args->rmtblkno > 0) {
+		error = xfs_attr_leaf_mark_incomplete(args, *state);
+		if (error)
+			return error;
+
+		return xfs_attr_rmtval_invalidate(args);
+	}
+
+	return 0;
+}
+
+/*
  * Remove a name from a B-tree attribute list.
  *
  * This will involve walking down the Btree, and may involve joining
@@ -1191,8 +1223,8 @@ xfs_attr_node_removename(
 
 	trace_xfs_attr_node_removename(args);
 
-	error = xfs_attr_node_hasname(args, &state);
-	if (error != -EEXIST)
+	error = xfs_attr_node_removename_setup(args, &state);
+	if (error)
 		goto out;
 
 	/*
@@ -1200,18 +1232,7 @@ xfs_attr_node_removename(
 	 * This is done before we remove the attribute so that we don't
 	 * overflow the maximum size of a transaction and/or hit a deadlock.
 	 */
-	blk = &state->path.blk[ state->path.active-1 ];
-	ASSERT(blk->bp != NULL);
-	ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
 	if (args->rmtblkno > 0) {
-		error = xfs_attr_leaf_mark_incomplete(args, state);
-		if (error)
-			goto out;
-
-		error = xfs_attr_rmtval_invalidate(args);
-		if (error)
-			return error;
-
 		error = xfs_attr_rmtval_remove(args);
 		if (error)
 			goto out;
-- 
2.7.4


  parent reply	other threads:[~2020-08-27  0:29 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-27  0:28 [PATCH v12 00/32] xfsprogs: Delayed Attributes Allison Collins
2020-08-27  0:28 ` [PATCH v12 01/32] xfsprogs: Add xfs_has_attr and subroutines Allison Collins
2020-08-27  0:28 ` [PATCH v12 02/32] xfsprogs: Check for -ENOATTR or -EEXIST Allison Collins
2020-08-27  0:28 ` [PATCH v12 03/32] xfsprogs: Factor out new helper functions xfs_attr_rmtval_set Allison Collins
2020-08-27  0:28 ` [PATCH v12 04/32] xfsprogs: Pull up trans handling in xfs_attr3_leaf_flipflags Allison Collins
2020-08-27  0:28 ` [PATCH v12 05/32] xfsprogs: Split apart xfs_attr_leaf_addname Allison Collins
2020-08-27  0:28 ` [PATCH v12 06/32] xfsprogs: Refactor xfs_attr_try_sf_addname Allison Collins
2020-08-27  0:28 ` [PATCH v12 07/32] xfsprogs: Pull up trans roll from xfs_attr3_leaf_setflag Allison Collins
2020-08-27  0:28 ` [PATCH v12 08/32] xfsprogs: Factor out xfs_attr_rmtval_invalidate Allison Collins
2020-08-27  0:28 ` [PATCH v12 09/32] xfsprogs: Pull up trans roll in xfs_attr3_leaf_clearflag Allison Collins
2020-08-27  0:28 ` [PATCH v12 10/32] xfsprogs: Refactor xfs_attr_rmtval_remove Allison Collins
2020-08-27  0:28 ` [PATCH v12 11/32] xfsprogs: Pull up xfs_attr_rmtval_invalidate Allison Collins
2020-08-27  0:28 ` [PATCH v12 12/32] xfsprogs: Add helper function xfs_attr_node_shrink Allison Collins
2020-08-27  0:28 ` [PATCH v12 13/32] xfsprogs: Remove unneeded xfs_trans_roll_inode calls Allison Collins
2020-08-27  0:28 ` [PATCH v12 14/32] xfsprogs: Remove xfs_trans_roll in xfs_attr_node_removename Allison Collins
2020-08-27  0:28 ` [PATCH v12 15/32] xfsprogs: Add helpers xfs_attr_is_shortform and xfs_attr_set_shortform Allison Collins
2020-08-27  0:28 ` [PATCH v12 16/32] xfsprogs: Add helper function xfs_attr_leaf_mark_incomplete Allison Collins
2020-08-27  0:28 ` [PATCH v12 17/32] xfsprogs: Add remote block helper functions Allison Collins
2020-08-27  0:28 ` Allison Collins [this message]
2020-08-27  0:28 ` [PATCH v12 19/32] xfsprogs: Add helper function xfs_attr_node_removename_rmt Allison Collins
2020-08-27  0:28 ` [PATCH v12 20/32] xfsprogs: Simplify xfs_attr_leaf_addname Allison Collins
2020-08-27  0:28 ` [PATCH v12 21/32] xfsprogs: Simplify xfs_attr_node_addname Allison Collins
2020-08-27  0:28 ` [PATCH v12 22/32] xfsprogs: Lift -ENOSPC handler from xfs_attr_leaf_addname Allison Collins
2020-08-27  0:28 ` [PATCH v12 23/32] xfsprogs: Add delay ready attr remove routines Allison Collins
2020-08-27  0:28 ` [PATCH v12 24/32] xfsprogs: Add delay ready attr set routines Allison Collins
2020-08-27  0:28 ` [PATCH v12 25/32] xfsprogs: Rename __xfs_attr_rmtval_remove Allison Collins
2020-08-27  0:28 ` [PATCH v12 26/32] xfsprogs: Set up infastructure for deferred attribute operations Allison Collins
2020-08-27  0:28 ` [PATCH v12 27/32] xfsprogs: Add xfs_attr_set_deferred and xfs_attr_remove_deferred Allison Collins
2020-08-27  0:28 ` [PATCH v12 28/32] xfsprogs: Add feature bit XFS_SB_FEAT_INCOMPAT_LOG_DELATTR Allison Collins
2020-08-27  0:28 ` [PATCH v12 29/32] xfsprogs: Enable delayed attributes Allison Collins
2020-08-27  0:28 ` [PATCH v12 30/32] xfs_io: Add delayed attributes error tag Allison Collins
2020-08-27  0:28 ` [PATCH v12 31/32] [RFC] xfsprogs: Add log item printing for ATTRI and ATTRD Allison Collins
2020-08-27  0:28 ` [PATCH v12 32/32] xfsprogs: Add delayed attribute flag to cmd Allison Collins

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=20200827002856.1131-19-allison.henderson@oracle.com \
    --to=allison.henderson@oracle.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 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.