Commit 9b1f4e98 authored by Brian Foster's avatar Brian Foster Committed by Darrick J. Wong

xfs: cancel dfops on xfs_defer_finish() error

The current semantics of xfs_defer_finish() require the caller to
call xfs_defer_cancel() on error. This is slightly inconsistent with
transaction commit error handling where a failed commit cleans up
the transaction before returning.

More significantly, the only requirement for exposure of
->dop_pending outside of xfs_defer_finish() is so that
xfs_defer_cancel() can drain it on error. Since the only recourse of
xfs_defer_finish() errors is cancellation, mirror the transaction
logic and cancel remaining dfops before returning from
xfs_defer_finish() with an error.

Beside simplifying xfs_defer_finish() semantics, this ensures that
xfs_defer_finish() always returns with an empty ->dop_pending and
thus facilitates removal of the list from xfs_defer_ops.
Signed-off-by: default avatarBrian Foster <bfoster@redhat.com>
Reviewed-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
parent 60f31a60
...@@ -590,7 +590,7 @@ xfs_attr_leaf_addname( ...@@ -590,7 +590,7 @@ xfs_attr_leaf_addname(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; return error;
/* /*
* Commit the current trans (including the inode) and start * Commit the current trans (including the inode) and start
...@@ -678,7 +678,7 @@ xfs_attr_leaf_addname( ...@@ -678,7 +678,7 @@ xfs_attr_leaf_addname(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; return error;
} }
/* /*
...@@ -741,7 +741,7 @@ xfs_attr_leaf_removename( ...@@ -741,7 +741,7 @@ xfs_attr_leaf_removename(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; return error;
} }
return 0; return 0;
out_defer_cancel: out_defer_cancel:
...@@ -867,7 +867,7 @@ xfs_attr_node_addname( ...@@ -867,7 +867,7 @@ xfs_attr_node_addname(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; goto out;
/* /*
* Commit the node conversion and start the next * Commit the node conversion and start the next
...@@ -891,7 +891,7 @@ xfs_attr_node_addname( ...@@ -891,7 +891,7 @@ xfs_attr_node_addname(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; goto out;
} else { } else {
/* /*
* Addition succeeded, update Btree hashvals. * Addition succeeded, update Btree hashvals.
...@@ -987,7 +987,7 @@ xfs_attr_node_addname( ...@@ -987,7 +987,7 @@ xfs_attr_node_addname(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; goto out;
} }
/* /*
...@@ -1110,7 +1110,7 @@ xfs_attr_node_removename( ...@@ -1110,7 +1110,7 @@ xfs_attr_node_removename(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; goto out;
/* /*
* Commit the Btree join operation and start a new trans. * Commit the Btree join operation and start a new trans.
*/ */
...@@ -1141,7 +1141,7 @@ xfs_attr_node_removename( ...@@ -1141,7 +1141,7 @@ xfs_attr_node_removename(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; goto out;
} else } else
xfs_trans_brelse(args->trans, bp); xfs_trans_brelse(args->trans, bp);
} }
......
...@@ -488,7 +488,7 @@ xfs_attr_rmtval_set( ...@@ -488,7 +488,7 @@ xfs_attr_rmtval_set(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; return error;
ASSERT(nmap == 1); ASSERT(nmap == 1);
ASSERT((map.br_startblock != DELAYSTARTBLOCK) && ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
...@@ -628,7 +628,7 @@ xfs_attr_rmtval_remove( ...@@ -628,7 +628,7 @@ xfs_attr_rmtval_remove(
goto out_defer_cancel; goto out_defer_cancel;
error = xfs_defer_finish(&args->trans); error = xfs_defer_finish(&args->trans);
if (error) if (error)
goto out_defer_cancel; return error;
/* /*
* Close out trans and start the next one in the chain. * Close out trans and start the next one in the chain.
......
...@@ -416,14 +416,15 @@ xfs_defer_finish_noroll( ...@@ -416,14 +416,15 @@ xfs_defer_finish_noroll(
} }
out: out:
if (error) if (error) {
trace_xfs_defer_finish_error((*tp)->t_mountp, (*tp)->t_dfops, trace_xfs_defer_finish_error((*tp)->t_mountp, (*tp)->t_dfops,
error); error);
else xfs_defer_cancel(*tp);
trace_xfs_defer_finish_done((*tp)->t_mountp, (*tp)->t_dfops,
_RET_IP_);
return error; return error;
}
trace_xfs_defer_finish_done((*tp)->t_mountp, (*tp)->t_dfops, _RET_IP_);
return 0;
} }
int int
......
...@@ -1624,7 +1624,7 @@ xfs_swap_extent_rmap( ...@@ -1624,7 +1624,7 @@ xfs_swap_extent_rmap(
error = xfs_defer_finish(tpp); error = xfs_defer_finish(tpp);
tp = *tpp; tp = *tpp;
if (error) if (error)
goto out_defer; goto out;
tirec.br_startoff += rlen; tirec.br_startoff += rlen;
if (tirec.br_startblock != HOLESTARTBLOCK && if (tirec.br_startblock != HOLESTARTBLOCK &&
......
...@@ -371,7 +371,7 @@ xfs_dquot_disk_alloc( ...@@ -371,7 +371,7 @@ xfs_dquot_disk_alloc(
tp = *tpp; tp = *tpp;
if (error) { if (error) {
xfs_buf_relse(bp); xfs_buf_relse(bp);
goto error1; goto error0;
} }
*bpp = bp; *bpp = bp;
return 0; return 0;
......
...@@ -1571,7 +1571,7 @@ xfs_itruncate_extents_flags( ...@@ -1571,7 +1571,7 @@ xfs_itruncate_extents_flags(
*/ */
error = xfs_defer_finish(&tp); error = xfs_defer_finish(&tp);
if (error) if (error)
goto out_bmap_cancel; goto out;
error = xfs_trans_roll_inode(&tp, ip); error = xfs_trans_roll_inode(&tp, ip);
if (error) if (error)
......
...@@ -518,10 +518,8 @@ xfs_reflink_cancel_cow_blocks( ...@@ -518,10 +518,8 @@ xfs_reflink_cancel_cow_blocks(
/* Roll the transaction */ /* Roll the transaction */
error = xfs_defer_finish(tpp); error = xfs_defer_finish(tpp);
if (error) { if (error)
xfs_defer_cancel(*tpp);
break; break;
}
/* Remove the mapping from the CoW fork. */ /* Remove the mapping from the CoW fork. */
xfs_bmap_del_extent_cow(ip, &icur, &got, &del); xfs_bmap_del_extent_cow(ip, &icur, &got, &del);
......
...@@ -933,11 +933,9 @@ __xfs_trans_commit( ...@@ -933,11 +933,9 @@ __xfs_trans_commit(
!(tp->t_flags & XFS_TRANS_PERM_LOG_RES)); !(tp->t_flags & XFS_TRANS_PERM_LOG_RES));
if (!regrant && (tp->t_flags & XFS_TRANS_PERM_LOG_RES)) { if (!regrant && (tp->t_flags & XFS_TRANS_PERM_LOG_RES)) {
error = xfs_defer_finish_noroll(&tp); error = xfs_defer_finish_noroll(&tp);
if (error) { if (error)
xfs_defer_cancel(tp);
goto out_unreserve; goto out_unreserve;
} }
}
/* /*
* If there is nothing to be logged by the transaction, * If there is nothing to be logged by the transaction,
......
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