Lines Matching refs:tp
189 struct xfs_trans *tp, in xfs_defer_barrier_create_intent() argument
206 struct xfs_trans *tp, in xfs_defer_barrier_create_done() argument
215 struct xfs_trans *tp, in xfs_defer_barrier_finish_item() argument
243 struct xfs_trans *tp, in xfs_defer_create_done() argument
259 tp->t_flags |= XFS_TRANS_DIRTY; in xfs_defer_create_done()
260 lip = dfp->dfp_ops->create_done(tp, dfp->dfp_intent, dfp->dfp_count); in xfs_defer_create_done()
264 tp->t_flags |= XFS_TRANS_HAS_INTENT_DONE; in xfs_defer_create_done()
265 xfs_trans_add_item(tp, lip); in xfs_defer_create_done()
277 struct xfs_trans *tp, in xfs_defer_create_intent() argument
286 lip = dfp->dfp_ops->create_intent(tp, &dfp->dfp_work, dfp->dfp_count, in xfs_defer_create_intent()
293 tp->t_flags |= XFS_TRANS_DIRTY; in xfs_defer_create_intent()
294 xfs_trans_add_item(tp, lip); in xfs_defer_create_intent()
310 struct xfs_trans *tp) in xfs_defer_create_intents() argument
315 list_for_each_entry(dfp, &tp->t_dfops, dfp_list) { in xfs_defer_create_intents()
318 trace_xfs_defer_create_intent(tp->t_mountp, dfp); in xfs_defer_create_intents()
319 ret2 = xfs_defer_create_intent(tp, dfp, true); in xfs_defer_create_intents()
376 struct xfs_trans *tp, in xfs_defer_trans_abort() argument
379 trace_xfs_defer_trans_abort(tp, _RET_IP_); in xfs_defer_trans_abort()
380 xfs_defer_pending_abort_list(tp->t_mountp, dop_pending); in xfs_defer_trans_abort()
390 struct xfs_trans *tp) in xfs_defer_save_resources() argument
398 list_for_each_entry(lip, &tp->t_items, li_trans) { in xfs_defer_save_resources()
412 xfs_trans_dirty_buf(tp, bli->bli_buf); in xfs_defer_save_resources()
424 xfs_trans_log_inode(tp, ili->ili_inode, in xfs_defer_save_resources()
440 struct xfs_trans *tp, in xfs_defer_restore_resources() argument
447 xfs_trans_ijoin(tp, dres->dr_ip[i], 0); in xfs_defer_restore_resources()
451 xfs_trans_bjoin(tp, dres->dr_bp[i]); in xfs_defer_restore_resources()
453 xfs_trans_ordered_buf(tp, dres->dr_bp[i]); in xfs_defer_restore_resources()
454 xfs_trans_bhold(tp, dres->dr_bp[i]); in xfs_defer_restore_resources()
509 struct xfs_trans *tp, in xfs_defer_relog_intent() argument
514 xfs_defer_create_done(tp, dfp); in xfs_defer_relog_intent()
516 lip = dfp->dfp_ops->relog_intent(tp, dfp->dfp_intent, dfp->dfp_done); in xfs_defer_relog_intent()
518 xfs_trans_add_item(tp, lip); in xfs_defer_relog_intent()
580 struct xfs_trans *tp, in xfs_defer_finish_one() argument
588 trace_xfs_defer_pending_finish(tp->t_mountp, dfp); in xfs_defer_finish_one()
590 xfs_defer_create_done(tp, dfp); in xfs_defer_finish_one()
594 trace_xfs_defer_finish_item(tp->t_mountp, dfp, li); in xfs_defer_finish_one()
595 error = ops->finish_item(tp, dfp->dfp_done, li, &state); in xfs_defer_finish_one()
609 ret = xfs_defer_create_intent(tp, dfp, false); in xfs_defer_finish_one()
623 ops->finish_cleanup(tp, state, error); in xfs_defer_finish_one()
630 struct xfs_trans *tp, in xfs_defer_isolate_paused() argument
636 list_for_each_entry_safe(dfp, pli, &tp->t_dfops, dfp_list) { in xfs_defer_isolate_paused()
641 trace_xfs_defer_isolate_paused(tp->t_mountp, dfp); in xfs_defer_isolate_paused()
655 struct xfs_trans **tp) in xfs_defer_finish_noroll() argument
662 ASSERT((*tp)->t_flags & XFS_TRANS_PERM_LOG_RES); in xfs_defer_finish_noroll()
664 trace_xfs_defer_finish(*tp, _RET_IP_); in xfs_defer_finish_noroll()
667 while (!list_empty(&dop_pending) || !list_empty(&(*tp)->t_dfops)) { in xfs_defer_finish_noroll()
677 int has_intents = xfs_defer_create_intents(*tp); in xfs_defer_finish_noroll()
679 xfs_defer_isolate_paused(*tp, &dop_paused); in xfs_defer_finish_noroll()
681 list_splice_init(&(*tp)->t_dfops, &dop_pending); in xfs_defer_finish_noroll()
688 error = xfs_defer_trans_roll(tp); in xfs_defer_finish_noroll()
693 xfs_defer_relog(tp, &dop_pending); in xfs_defer_finish_noroll()
694 xfs_defer_relog(tp, &dop_paused); in xfs_defer_finish_noroll()
696 if ((*tp)->t_flags & XFS_TRANS_DIRTY) { in xfs_defer_finish_noroll()
697 error = xfs_defer_trans_roll(tp); in xfs_defer_finish_noroll()
707 error = xfs_defer_finish_one(*tp, dfp); in xfs_defer_finish_noroll()
713 list_splice_tail_init(&dop_paused, &(*tp)->t_dfops); in xfs_defer_finish_noroll()
715 trace_xfs_defer_finish_done(*tp, _RET_IP_); in xfs_defer_finish_noroll()
720 xfs_defer_trans_abort(*tp, &dop_pending); in xfs_defer_finish_noroll()
721 xfs_force_shutdown((*tp)->t_mountp, SHUTDOWN_CORRUPT_INCORE); in xfs_defer_finish_noroll()
722 trace_xfs_defer_finish_error(*tp, error); in xfs_defer_finish_noroll()
723 xfs_defer_cancel_list((*tp)->t_mountp, &dop_pending); in xfs_defer_finish_noroll()
724 xfs_defer_cancel(*tp); in xfs_defer_finish_noroll()
730 struct xfs_trans **tp) in xfs_defer_finish() argument
741 error = xfs_defer_finish_noroll(tp); in xfs_defer_finish()
744 if ((*tp)->t_flags & XFS_TRANS_DIRTY) { in xfs_defer_finish()
745 error = xfs_defer_trans_roll(tp); in xfs_defer_finish()
747 xfs_force_shutdown((*tp)->t_mountp, in xfs_defer_finish()
755 list_for_each_entry(dfp, &(*tp)->t_dfops, dfp_list) in xfs_defer_finish()
758 (*tp)->t_flags &= ~XFS_TRANS_LOWMODE; in xfs_defer_finish()
764 struct xfs_trans *tp) in xfs_defer_cancel() argument
766 struct xfs_mount *mp = tp->t_mountp; in xfs_defer_cancel()
768 trace_xfs_defer_cancel(tp, _RET_IP_); in xfs_defer_cancel()
769 xfs_defer_trans_abort(tp, &tp->t_dfops); in xfs_defer_cancel()
770 xfs_defer_cancel_list(mp, &tp->t_dfops); in xfs_defer_cancel()
779 struct xfs_trans *tp, in xfs_defer_find_last() argument
785 if (list_empty(&tp->t_dfops)) in xfs_defer_find_last()
788 dfp = list_last_entry(&tp->t_dfops, struct xfs_defer_pending, in xfs_defer_find_last()
841 struct xfs_trans *tp, in xfs_defer_add() argument
847 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES); in xfs_defer_add()
849 dfp = xfs_defer_find_last(tp, ops); in xfs_defer_add()
851 dfp = xfs_defer_alloc(&tp->t_dfops, ops); in xfs_defer_add()
854 trace_xfs_defer_add_item(tp->t_mountp, dfp, li); in xfs_defer_add()
864 struct xfs_trans *tp) in xfs_defer_add_barrier() argument
868 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES); in xfs_defer_add_barrier()
871 dfp = xfs_defer_find_last(tp, &xfs_barrier_defer_type); in xfs_defer_add_barrier()
875 xfs_defer_alloc(&tp->t_dfops, &xfs_barrier_defer_type); in xfs_defer_add_barrier()
877 trace_xfs_defer_add_item(tp->t_mountp, dfp, NULL); in xfs_defer_add_barrier()
965 struct xfs_trans *tp) in xfs_defer_ops_capture() argument
971 if (list_empty(&tp->t_dfops)) in xfs_defer_ops_capture()
974 error = xfs_defer_create_intents(tp); in xfs_defer_ops_capture()
984 list_splice_init(&tp->t_dfops, &dfc->dfc_dfops); in xfs_defer_ops_capture()
985 dfc->dfc_tpflags = tp->t_flags & XFS_TRANS_LOWMODE; in xfs_defer_ops_capture()
986 tp->t_flags &= ~XFS_TRANS_LOWMODE; in xfs_defer_ops_capture()
989 dfc->dfc_blkres = tp->t_blk_res - tp->t_blk_res_used; in xfs_defer_ops_capture()
990 dfc->dfc_rtxres = tp->t_rtx_res - tp->t_rtx_res_used; in xfs_defer_ops_capture()
993 dfc->dfc_logres = tp->t_log_res; in xfs_defer_ops_capture()
995 error = xfs_defer_save_resources(&dfc->dfc_held, tp); in xfs_defer_ops_capture()
1002 xfs_force_shutdown(tp->t_mountp, SHUTDOWN_CORRUPT_INCORE); in xfs_defer_ops_capture()
1051 struct xfs_trans *tp, in xfs_defer_ops_capture_and_commit() argument
1054 struct xfs_mount *mp = tp->t_mountp; in xfs_defer_ops_capture_and_commit()
1059 dfc = xfs_defer_ops_capture(tp); in xfs_defer_ops_capture_and_commit()
1061 xfs_trans_cancel(tp); in xfs_defer_ops_capture_and_commit()
1065 return xfs_trans_commit(tp); in xfs_defer_ops_capture_and_commit()
1068 error = xfs_trans_commit(tp); in xfs_defer_ops_capture_and_commit()
1087 struct xfs_trans *tp, in xfs_defer_ops_continue() argument
1092 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES); in xfs_defer_ops_continue()
1093 ASSERT(!(tp->t_flags & XFS_TRANS_DIRTY)); in xfs_defer_ops_continue()
1110 xfs_defer_restore_resources(tp, &dfc->dfc_held); in xfs_defer_ops_continue()
1115 list_splice_init(&dfc->dfc_dfops, &tp->t_dfops); in xfs_defer_ops_continue()
1116 tp->t_flags |= dfc->dfc_tpflags; in xfs_defer_ops_continue()
1215 struct xfs_trans *tp, in xfs_defer_item_pause() argument
1222 trace_xfs_defer_item_pause(tp->t_mountp, dfp); in xfs_defer_item_pause()
1231 struct xfs_trans *tp, in xfs_defer_item_unpause() argument
1238 trace_xfs_defer_item_unpause(tp->t_mountp, dfp); in xfs_defer_item_unpause()