Lines Matching defs:ntp
90 struct xfs_trans *ntp;
94 ntp = kmem_cache_zalloc(xfs_trans_zone, GFP_KERNEL | __GFP_NOFAIL);
99 ntp->t_magic = XFS_TRANS_HEADER_MAGIC;
100 ntp->t_mountp = tp->t_mountp;
101 INIT_LIST_HEAD(&ntp->t_items);
102 INIT_LIST_HEAD(&ntp->t_busy);
103 INIT_LIST_HEAD(&ntp->t_dfops);
104 ntp->t_firstblock = NULLFSBLOCK;
109 ntp->t_flags = XFS_TRANS_PERM_LOG_RES |
115 ntp->t_ticket = xfs_log_ticket_get(tp->t_ticket);
118 ntp->t_blk_res = tp->t_blk_res - tp->t_blk_res_used;
121 ntp->t_rtx_res = tp->t_rtx_res - tp->t_rtx_res_used;
124 xfs_trans_switch_context(tp, ntp);
127 xfs_defer_move(ntp, tp);
129 xfs_trans_dup_dqinfo(tp, ntp);
130 return ntp;