Lines Matching defs:xfs_trans
108 typedef struct xfs_trans { struct
109 unsigned int t_magic; /* magic number */
110 unsigned int t_log_res; /* amt of log space resvd */
111 unsigned int t_log_count; /* count for perm log res */
112 unsigned int t_blk_res; /* # of blocks resvd */
113 unsigned int t_blk_res_used; /* # of resvd blocks used */
114 unsigned int t_rtx_res; /* # of rt extents resvd */
115 unsigned int t_rtx_res_used; /* # of resvd rt extents used */
116 unsigned int t_flags; /* misc flags */
117 xfs_fsblock_t t_firstblock; /* first block allocated */
118 struct xlog_ticket *t_ticket; /* log mgr ticket */
119 struct xfs_mount *t_mountp; /* ptr to fs mount struct */
120 struct xfs_dquot_acct *t_dqinfo; /* acctg info for dquots */
144 } xfs_trans_t; argument