Commit e4a1e29c authored by Eric Sandeen's avatar Eric Sandeen Committed by Dave Chinner

xfs: remove unused ail pointer arg from xfs_trans_ail_cursor_done()

Signed-off-by: default avatarEric Sandeen <sandeen@redhat.com>
Reviewed-by: default avatarDave Chinner <dchinner@redhat.com>
Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
parent bda65ef8
...@@ -3145,7 +3145,7 @@ xlog_recover_efd_pass2( ...@@ -3145,7 +3145,7 @@ xlog_recover_efd_pass2(
} }
lip = xfs_trans_ail_cursor_next(ailp, &cur); lip = xfs_trans_ail_cursor_next(ailp, &cur);
} }
xfs_trans_ail_cursor_done(ailp, &cur); xfs_trans_ail_cursor_done(&cur);
spin_unlock(&ailp->xa_lock); spin_unlock(&ailp->xa_lock);
return 0; return 0;
...@@ -3757,7 +3757,7 @@ xlog_recover_process_efis( ...@@ -3757,7 +3757,7 @@ xlog_recover_process_efis(
lip = xfs_trans_ail_cursor_next(ailp, &cur); lip = xfs_trans_ail_cursor_next(ailp, &cur);
} }
out: out:
xfs_trans_ail_cursor_done(ailp, &cur); xfs_trans_ail_cursor_done(&cur);
spin_unlock(&ailp->xa_lock); spin_unlock(&ailp->xa_lock);
return error; return error;
} }
......
...@@ -827,7 +827,7 @@ xfs_trans_committed_bulk( ...@@ -827,7 +827,7 @@ xfs_trans_committed_bulk(
xfs_log_item_batch_insert(ailp, &cur, log_items, i, commit_lsn); xfs_log_item_batch_insert(ailp, &cur, log_items, i, commit_lsn);
spin_lock(&ailp->xa_lock); spin_lock(&ailp->xa_lock);
xfs_trans_ail_cursor_done(ailp, &cur); xfs_trans_ail_cursor_done(&cur);
spin_unlock(&ailp->xa_lock); spin_unlock(&ailp->xa_lock);
} }
......
...@@ -173,7 +173,6 @@ xfs_trans_ail_cursor_next( ...@@ -173,7 +173,6 @@ xfs_trans_ail_cursor_next(
*/ */
void void
xfs_trans_ail_cursor_done( xfs_trans_ail_cursor_done(
struct xfs_ail *ailp,
struct xfs_ail_cursor *cur) struct xfs_ail_cursor *cur)
{ {
cur->item = NULL; cur->item = NULL;
...@@ -368,7 +367,7 @@ xfsaild_push( ...@@ -368,7 +367,7 @@ xfsaild_push(
* If the AIL is empty or our push has reached the end we are * If the AIL is empty or our push has reached the end we are
* done now. * done now.
*/ */
xfs_trans_ail_cursor_done(ailp, &cur); xfs_trans_ail_cursor_done(&cur);
spin_unlock(&ailp->xa_lock); spin_unlock(&ailp->xa_lock);
goto out_done; goto out_done;
} }
...@@ -453,7 +452,7 @@ xfsaild_push( ...@@ -453,7 +452,7 @@ xfsaild_push(
break; break;
lsn = lip->li_lsn; lsn = lip->li_lsn;
} }
xfs_trans_ail_cursor_done(ailp, &cur); xfs_trans_ail_cursor_done(&cur);
spin_unlock(&ailp->xa_lock); spin_unlock(&ailp->xa_lock);
if (xfs_buf_delwri_submit_nowait(&ailp->xa_buf_list)) if (xfs_buf_delwri_submit_nowait(&ailp->xa_buf_list))
......
...@@ -133,8 +133,7 @@ struct xfs_log_item * xfs_trans_ail_cursor_last(struct xfs_ail *ailp, ...@@ -133,8 +133,7 @@ struct xfs_log_item * xfs_trans_ail_cursor_last(struct xfs_ail *ailp,
xfs_lsn_t lsn); xfs_lsn_t lsn);
struct xfs_log_item * xfs_trans_ail_cursor_next(struct xfs_ail *ailp, struct xfs_log_item * xfs_trans_ail_cursor_next(struct xfs_ail *ailp,
struct xfs_ail_cursor *cur); struct xfs_ail_cursor *cur);
void xfs_trans_ail_cursor_done(struct xfs_ail *ailp, void xfs_trans_ail_cursor_done(struct xfs_ail_cursor *cur);
struct xfs_ail_cursor *cur);
#if BITS_PER_LONG != 64 #if BITS_PER_LONG != 64
static inline void static inline void
......
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