diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-08-28 07:12:03 -0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-08-30 15:14:35 -0400 |
commit | 904c17e6832845cc651a4d5108a7d57eacdb61f7 (patch) | |
tree | 3ff65a6349ccea7752f4beb06ce438625b3e2b72 /fs/xfs/xfs_trans_ail.c | |
parent | 239567033c38933c4d6f402f9f8a2126df73e4c6 (diff) |
xfs: finish removing IOP_* macros.
In optimising the CIL operations, some of the IOP_* macros for
calling log item operations were removed. Remove the rest of them as
Christoph requested.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Geoffrey Wehrman <gwehrman@sgi.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_trans_ail.c')
-rw-r--r-- | fs/xfs/xfs_trans_ail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_trans_ail.c b/fs/xfs/xfs_trans_ail.c index 0e7df03e60c5..21c6d7ddbc06 100644 --- a/fs/xfs/xfs_trans_ail.c +++ b/fs/xfs/xfs_trans_ail.c | |||
@@ -379,11 +379,11 @@ xfsaild_push( | |||
379 | int lock_result; | 379 | int lock_result; |
380 | 380 | ||
381 | /* | 381 | /* |
382 | * Note that IOP_PUSH may unlock and reacquire the AIL lock. We | 382 | * Note that iop_push may unlock and reacquire the AIL lock. We |
383 | * rely on the AIL cursor implementation to be able to deal with | 383 | * rely on the AIL cursor implementation to be able to deal with |
384 | * the dropped lock. | 384 | * the dropped lock. |
385 | */ | 385 | */ |
386 | lock_result = IOP_PUSH(lip, &ailp->xa_buf_list); | 386 | lock_result = lip->li_ops->iop_push(lip, &ailp->xa_buf_list); |
387 | switch (lock_result) { | 387 | switch (lock_result) { |
388 | case XFS_ITEM_SUCCESS: | 388 | case XFS_ITEM_SUCCESS: |
389 | XFS_STATS_INC(xs_push_ail_success); | 389 | XFS_STATS_INC(xs_push_ail_success); |