• Home
  • Raw
  • Download

Lines Matching refs:trans

83 	struct xfs_trans		**trans,  in xfs_attr3_leaf_inactive()  argument
120 xfs_trans_brelse(*trans, bp); in xfs_attr3_leaf_inactive()
131 struct xfs_trans **trans, in xfs_attr3_node_inactive() argument
149 xfs_trans_brelse(*trans, bp); /* no locks for later trans */ in xfs_attr3_node_inactive()
156 xfs_trans_brelse(*trans, bp); in xfs_attr3_node_inactive()
160 xfs_trans_brelse(*trans, bp); /* no locks for later trans */ in xfs_attr3_node_inactive()
174 error = xfs_da3_node_read(*trans, dp, child_fsb, &child_bp, in xfs_attr3_node_inactive()
189 error = xfs_attr3_node_inactive(trans, dp, child_bp, in xfs_attr3_node_inactive()
194 error = xfs_attr3_leaf_inactive(trans, dp, child_bp); in xfs_attr3_node_inactive()
198 xfs_trans_brelse(*trans, child_bp); in xfs_attr3_node_inactive()
208 error = xfs_trans_get_buf(*trans, mp->m_ddev_targp, in xfs_attr3_node_inactive()
216 xfs_trans_brelse(*trans, child_bp); in xfs_attr3_node_inactive()
219 xfs_trans_binval(*trans, child_bp); in xfs_attr3_node_inactive()
228 error = xfs_da3_node_read_mapped(*trans, dp, in xfs_attr3_node_inactive()
235 xfs_trans_brelse(*trans, bp); in xfs_attr3_node_inactive()
240 error = xfs_trans_roll_inode(trans, dp); in xfs_attr3_node_inactive()
256 struct xfs_trans **trans, in xfs_attr3_root_inactive() argument
271 error = xfs_da3_node_read(*trans, dp, 0, &bp, XFS_ATTR_FORK); in xfs_attr3_root_inactive()
284 error = xfs_attr3_node_inactive(trans, dp, bp, 1); in xfs_attr3_root_inactive()
288 error = xfs_attr3_leaf_inactive(trans, dp, bp); in xfs_attr3_root_inactive()
293 xfs_trans_brelse(*trans, bp); in xfs_attr3_root_inactive()
302 error = xfs_trans_get_buf(*trans, mp->m_ddev_targp, blkno, in xfs_attr3_root_inactive()
308 xfs_trans_brelse(*trans, bp); in xfs_attr3_root_inactive()
311 xfs_trans_binval(*trans, bp); /* remove from cache */ in xfs_attr3_root_inactive()
315 error = xfs_trans_roll_inode(trans, dp); in xfs_attr3_root_inactive()
332 struct xfs_trans *trans; in xfs_attr_inactive() local
347 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_attrinval, 0, 0, 0, &trans); in xfs_attr_inactive()
361 xfs_trans_ijoin(trans, dp, 0); in xfs_attr_inactive()
371 error = xfs_attr3_root_inactive(&trans, dp); in xfs_attr_inactive()
375 error = xfs_itruncate_extents(&trans, dp, XFS_ATTR_FORK, 0); in xfs_attr_inactive()
381 xfs_attr_fork_remove(dp, trans); in xfs_attr_inactive()
383 error = xfs_trans_commit(trans); in xfs_attr_inactive()
388 xfs_trans_cancel(trans); in xfs_attr_inactive()