From: Allison Collins Date: Tue, 15 Sep 2020 19:59:37 +0000 (-0400) Subject: xfs: Lift -ENOSPC handler from xfs_attr_leaf_addname X-Git-Tag: v5.9.0-rc0~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=484c2bf6e837c59ec50ea07ddd26660ce2c181d7;p=thirdparty%2Fxfsprogs-dev.git xfs: Lift -ENOSPC handler from xfs_attr_leaf_addname Source kernel commit: 0f89edcd8e8484dd1790ec474a650dd774c6b75e Lift -ENOSPC handler from xfs_attr_leaf_addname. This will help to reorganize transitions between the attr forms later. Signed-off-by: Allison Collins Reviewed-by: Darrick J. Wong Reviewed-by: Brian Foster Signed-off-by: Darrick J. Wong Acked-by: Dave Chinner Signed-off-by: Eric Sandeen --- diff --git a/libxfs/xfs_attr.c b/libxfs/xfs_attr.c index cf5948956..1c1092fe6 100644 --- a/libxfs/xfs_attr.c +++ b/libxfs/xfs_attr.c @@ -298,6 +298,13 @@ xfs_attr_set_args( if (error != -ENOSPC) return error; + /* + * Promote the attribute list to the Btree format. + */ + error = xfs_attr3_leaf_to_node(args); + if (error) + return error; + /* * Finish any deferred work items and roll the transaction once * more. The goal here is to call node_addname with the inode @@ -603,7 +610,7 @@ xfs_attr_leaf_try_add( struct xfs_da_args *args, struct xfs_buf *bp) { - int retval, error; + int retval; /* * Look up the given attribute in the leaf block. Figure out if @@ -635,20 +642,10 @@ xfs_attr_leaf_try_add( } /* - * Add the attribute to the leaf block, transitioning to a Btree - * if required. + * Add the attribute to the leaf block */ - retval = xfs_attr3_leaf_add(bp, args); - if (retval == -ENOSPC) { - /* - * Promote the attribute list to the Btree format. Unless an - * error occurs, retain the -ENOSPC retval - */ - error = xfs_attr3_leaf_to_node(args); - if (error) - return error; - } - return retval; + return xfs_attr3_leaf_add(bp, args); + out_brelse: xfs_trans_brelse(args->trans, bp); return retval;