Commit bf4a5cff authored by Allison Collins's avatar Allison Collins Committed by Darrick J. Wong

xfs: Simplify xfs_attr_node_addname

Invert the rename logic in xfs_attr_node_addname to simplify the
delayed attr logic later.
Signed-off-by: default avatarAllison Collins <allison.henderson@oracle.com>
Reviewed-by: default avatarBrian Foster <bfoster@redhat.com>
Reviewed-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Acked-by: default avatarDave Chinner <dchinner@redhat.com>
parent 5fdca0ad
...@@ -1025,31 +1025,38 @@ xfs_attr_node_addname( ...@@ -1025,31 +1025,38 @@ xfs_attr_node_addname(
return error; return error;
} }
if (!(args->op_flags & XFS_DA_OP_RENAME)) {
/* /*
* If this is an atomic rename operation, we must "flip" the * Added a "remote" value, just clear the incomplete flag.
* incomplete flags on the "new" and "old" attribute/value pairs
* so that one disappears and one appears atomically. Then we
* must remove the "old" attribute/value pair.
*/ */
if (args->op_flags & XFS_DA_OP_RENAME) { if (args->rmtblkno > 0)
error = xfs_attr3_leaf_clearflag(args);
retval = error;
goto out;
}
/* /*
* In a separate transaction, set the incomplete flag on the * If this is an atomic rename operation, we must "flip" the incomplete
* "old" attr and clear the incomplete flag on the "new" attr. * flags on the "new" and "old" attribute/value pairs so that one
* disappears and one appears atomically. Then we must remove the "old"
* attribute/value pair.
*
* In a separate transaction, set the incomplete flag on the "old" attr
* and clear the incomplete flag on the "new" attr.
*/ */
error = xfs_attr3_leaf_flipflags(args); error = xfs_attr3_leaf_flipflags(args);
if (error) if (error)
goto out; goto out;
/* /*
* Commit the flag value change and start the next trans in * Commit the flag value change and start the next trans in series
* series
*/ */
error = xfs_trans_roll_inode(&args->trans, args->dp); error = xfs_trans_roll_inode(&args->trans, args->dp);
if (error) if (error)
goto out; goto out;
/* /*
* Dismantle the "old" attribute/value pair by removing * Dismantle the "old" attribute/value pair by removing a "remote" value
* a "remote" value (if it exists). * (if it exists).
*/ */
xfs_attr_restore_rmt_blk(args); xfs_attr_restore_rmt_blk(args);
...@@ -1064,13 +1071,11 @@ xfs_attr_node_addname( ...@@ -1064,13 +1071,11 @@ xfs_attr_node_addname(
} }
/* /*
* Re-find the "old" attribute entry after any split ops. * Re-find the "old" attribute entry after any split ops. The INCOMPLETE
* The INCOMPLETE flag means that we will find the "old" * flag means that we will find the "old" attr, not the "new" one.
* attr, not the "new" one.
*/ */
args->attr_filter |= XFS_ATTR_INCOMPLETE; args->attr_filter |= XFS_ATTR_INCOMPLETE;
state = xfs_da_state_alloc(args); state = xfs_da_state_alloc(args);
state->inleaf = 0; state->inleaf = 0;
error = xfs_da3_node_lookup_int(state, &retval); error = xfs_da3_node_lookup_int(state, &retval);
if (error) if (error)
...@@ -1079,7 +1084,7 @@ xfs_attr_node_addname( ...@@ -1079,7 +1084,7 @@ xfs_attr_node_addname(
/* /*
* Remove the name and update the hashvals in the tree. * Remove the name and update the hashvals in the tree.
*/ */
blk = &state->path.blk[ state->path.active-1 ]; blk = &state->path.blk[state->path.active-1];
ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC); ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
error = xfs_attr3_leaf_remove(blk->bp, args); error = xfs_attr3_leaf_remove(blk->bp, args);
xfs_da3_fixhashpath(state, &state->path); xfs_da3_fixhashpath(state, &state->path);
...@@ -1092,15 +1097,6 @@ xfs_attr_node_addname( ...@@ -1092,15 +1097,6 @@ xfs_attr_node_addname(
if (error) if (error)
goto out; goto out;
} }
} else if (args->rmtblkno > 0) {
/*
* Added a "remote" value, just clear the incomplete flag.
*/
error = xfs_attr3_leaf_clearflag(args);
if (error)
goto out;
}
retval = error = 0; retval = error = 0;
out: out:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment