xfs_trans.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. /*
  2. * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef __XFS_TRANS_H__
  19. #define __XFS_TRANS_H__
  20. /* kernel only transaction subsystem defines */
  21. struct xfs_buf;
  22. struct xfs_buftarg;
  23. struct xfs_efd_log_item;
  24. struct xfs_efi_log_item;
  25. struct xfs_inode;
  26. struct xfs_item_ops;
  27. struct xfs_log_iovec;
  28. struct xfs_log_item_desc;
  29. struct xfs_mount;
  30. struct xfs_trans;
  31. struct xfs_trans_res;
  32. struct xfs_dquot_acct;
  33. struct xfs_rud_log_item;
  34. struct xfs_rui_log_item;
  35. struct xfs_btree_cur;
  36. struct xfs_cui_log_item;
  37. struct xfs_cud_log_item;
  38. struct xfs_defer_ops;
  39. struct xfs_bui_log_item;
  40. struct xfs_bud_log_item;
  41. typedef struct xfs_log_item {
  42. struct list_head li_ail; /* AIL pointers */
  43. xfs_lsn_t li_lsn; /* last on-disk lsn */
  44. struct xfs_log_item_desc *li_desc; /* ptr to current desc*/
  45. struct xfs_mount *li_mountp; /* ptr to fs mount */
  46. struct xfs_ail *li_ailp; /* ptr to AIL */
  47. uint li_type; /* item type */
  48. uint li_flags; /* misc flags */
  49. struct xfs_log_item *li_bio_list; /* buffer item list */
  50. void (*li_cb)(struct xfs_buf *,
  51. struct xfs_log_item *);
  52. /* buffer item iodone */
  53. /* callback func */
  54. const struct xfs_item_ops *li_ops; /* function list */
  55. /* delayed logging */
  56. struct list_head li_cil; /* CIL pointers */
  57. struct xfs_log_vec *li_lv; /* active log vector */
  58. struct xfs_log_vec *li_lv_shadow; /* standby vector */
  59. xfs_lsn_t li_seq; /* CIL commit seq */
  60. } xfs_log_item_t;
  61. #define XFS_LI_IN_AIL 0x1
  62. #define XFS_LI_ABORTED 0x2
  63. #define XFS_LI_FLAGS \
  64. { XFS_LI_IN_AIL, "IN_AIL" }, \
  65. { XFS_LI_ABORTED, "ABORTED" }
  66. struct xfs_item_ops {
  67. void (*iop_size)(xfs_log_item_t *, int *, int *);
  68. void (*iop_format)(xfs_log_item_t *, struct xfs_log_vec *);
  69. void (*iop_pin)(xfs_log_item_t *);
  70. void (*iop_unpin)(xfs_log_item_t *, int remove);
  71. uint (*iop_push)(struct xfs_log_item *, struct list_head *);
  72. void (*iop_unlock)(xfs_log_item_t *);
  73. xfs_lsn_t (*iop_committed)(xfs_log_item_t *, xfs_lsn_t);
  74. void (*iop_committing)(xfs_log_item_t *, xfs_lsn_t);
  75. };
  76. void xfs_log_item_init(struct xfs_mount *mp, struct xfs_log_item *item,
  77. int type, const struct xfs_item_ops *ops);
  78. /*
  79. * Return values for the iop_push() routines.
  80. */
  81. #define XFS_ITEM_SUCCESS 0
  82. #define XFS_ITEM_PINNED 1
  83. #define XFS_ITEM_LOCKED 2
  84. #define XFS_ITEM_FLUSHING 3
  85. /*
  86. * This is the structure maintained for every active transaction.
  87. */
  88. typedef struct xfs_trans {
  89. unsigned int t_magic; /* magic number */
  90. unsigned int t_log_res; /* amt of log space resvd */
  91. unsigned int t_log_count; /* count for perm log res */
  92. unsigned int t_blk_res; /* # of blocks resvd */
  93. unsigned int t_blk_res_used; /* # of resvd blocks used */
  94. unsigned int t_rtx_res; /* # of rt extents resvd */
  95. unsigned int t_rtx_res_used; /* # of resvd rt extents used */
  96. struct xlog_ticket *t_ticket; /* log mgr ticket */
  97. struct xfs_mount *t_mountp; /* ptr to fs mount struct */
  98. struct xfs_dquot_acct *t_dqinfo; /* acctg info for dquots */
  99. unsigned int t_flags; /* misc flags */
  100. int64_t t_icount_delta; /* superblock icount change */
  101. int64_t t_ifree_delta; /* superblock ifree change */
  102. int64_t t_fdblocks_delta; /* superblock fdblocks chg */
  103. int64_t t_res_fdblocks_delta; /* on-disk only chg */
  104. int64_t t_frextents_delta;/* superblock freextents chg*/
  105. int64_t t_res_frextents_delta; /* on-disk only chg */
  106. #if defined(DEBUG) || defined(XFS_WARN)
  107. int64_t t_ag_freeblks_delta; /* debugging counter */
  108. int64_t t_ag_flist_delta; /* debugging counter */
  109. int64_t t_ag_btree_delta; /* debugging counter */
  110. #endif
  111. int64_t t_dblocks_delta;/* superblock dblocks change */
  112. int64_t t_agcount_delta;/* superblock agcount change */
  113. int64_t t_imaxpct_delta;/* superblock imaxpct change */
  114. int64_t t_rextsize_delta;/* superblock rextsize chg */
  115. int64_t t_rbmblocks_delta;/* superblock rbmblocks chg */
  116. int64_t t_rblocks_delta;/* superblock rblocks change */
  117. int64_t t_rextents_delta;/* superblocks rextents chg */
  118. int64_t t_rextslog_delta;/* superblocks rextslog chg */
  119. struct list_head t_items; /* log item descriptors */
  120. struct list_head t_busy; /* list of busy extents */
  121. unsigned long t_pflags; /* saved process flags state */
  122. } xfs_trans_t;
  123. /*
  124. * XFS transaction mechanism exported interfaces that are
  125. * actually macros.
  126. */
  127. #define xfs_trans_set_sync(tp) ((tp)->t_flags |= XFS_TRANS_SYNC)
  128. #if defined(DEBUG) || defined(XFS_WARN)
  129. #define xfs_trans_agblocks_delta(tp, d) ((tp)->t_ag_freeblks_delta += (int64_t)d)
  130. #define xfs_trans_agflist_delta(tp, d) ((tp)->t_ag_flist_delta += (int64_t)d)
  131. #define xfs_trans_agbtree_delta(tp, d) ((tp)->t_ag_btree_delta += (int64_t)d)
  132. #else
  133. #define xfs_trans_agblocks_delta(tp, d)
  134. #define xfs_trans_agflist_delta(tp, d)
  135. #define xfs_trans_agbtree_delta(tp, d)
  136. #endif
  137. /*
  138. * XFS transaction mechanism exported interfaces.
  139. */
  140. int xfs_trans_alloc(struct xfs_mount *mp, struct xfs_trans_res *resp,
  141. uint blocks, uint rtextents, uint flags,
  142. struct xfs_trans **tpp);
  143. int xfs_trans_alloc_empty(struct xfs_mount *mp,
  144. struct xfs_trans **tpp);
  145. void xfs_trans_mod_sb(xfs_trans_t *, uint, int64_t);
  146. struct xfs_buf *xfs_trans_get_buf_map(struct xfs_trans *tp,
  147. struct xfs_buftarg *target,
  148. struct xfs_buf_map *map, int nmaps,
  149. uint flags);
  150. static inline struct xfs_buf *
  151. xfs_trans_get_buf(
  152. struct xfs_trans *tp,
  153. struct xfs_buftarg *target,
  154. xfs_daddr_t blkno,
  155. int numblks,
  156. uint flags)
  157. {
  158. DEFINE_SINGLE_BUF_MAP(map, blkno, numblks);
  159. return xfs_trans_get_buf_map(tp, target, &map, 1, flags);
  160. }
  161. int xfs_trans_read_buf_map(struct xfs_mount *mp,
  162. struct xfs_trans *tp,
  163. struct xfs_buftarg *target,
  164. struct xfs_buf_map *map, int nmaps,
  165. xfs_buf_flags_t flags,
  166. struct xfs_buf **bpp,
  167. const struct xfs_buf_ops *ops);
  168. static inline int
  169. xfs_trans_read_buf(
  170. struct xfs_mount *mp,
  171. struct xfs_trans *tp,
  172. struct xfs_buftarg *target,
  173. xfs_daddr_t blkno,
  174. int numblks,
  175. xfs_buf_flags_t flags,
  176. struct xfs_buf **bpp,
  177. const struct xfs_buf_ops *ops)
  178. {
  179. DEFINE_SINGLE_BUF_MAP(map, blkno, numblks);
  180. return xfs_trans_read_buf_map(mp, tp, target, &map, 1,
  181. flags, bpp, ops);
  182. }
  183. struct xfs_buf *xfs_trans_getsb(xfs_trans_t *, struct xfs_mount *, int);
  184. void xfs_trans_brelse(xfs_trans_t *, struct xfs_buf *);
  185. void xfs_trans_bjoin(xfs_trans_t *, struct xfs_buf *);
  186. void xfs_trans_bhold(xfs_trans_t *, struct xfs_buf *);
  187. void xfs_trans_bhold_release(xfs_trans_t *, struct xfs_buf *);
  188. void xfs_trans_binval(xfs_trans_t *, struct xfs_buf *);
  189. void xfs_trans_inode_buf(xfs_trans_t *, struct xfs_buf *);
  190. void xfs_trans_stale_inode_buf(xfs_trans_t *, struct xfs_buf *);
  191. void xfs_trans_ordered_buf(xfs_trans_t *, struct xfs_buf *);
  192. void xfs_trans_dquot_buf(xfs_trans_t *, struct xfs_buf *, uint);
  193. void xfs_trans_inode_alloc_buf(xfs_trans_t *, struct xfs_buf *);
  194. void xfs_trans_ichgtime(struct xfs_trans *, struct xfs_inode *, int);
  195. void xfs_trans_ijoin(struct xfs_trans *, struct xfs_inode *, uint);
  196. void xfs_trans_log_buf(xfs_trans_t *, struct xfs_buf *, uint, uint);
  197. void xfs_trans_log_inode(xfs_trans_t *, struct xfs_inode *, uint);
  198. void xfs_extent_free_init_defer_op(void);
  199. struct xfs_efd_log_item *xfs_trans_get_efd(struct xfs_trans *,
  200. struct xfs_efi_log_item *,
  201. uint);
  202. int xfs_trans_free_extent(struct xfs_trans *,
  203. struct xfs_efd_log_item *, xfs_fsblock_t,
  204. xfs_extlen_t, struct xfs_owner_info *);
  205. int xfs_trans_commit(struct xfs_trans *);
  206. int xfs_trans_roll(struct xfs_trans **, struct xfs_inode *);
  207. void xfs_trans_cancel(xfs_trans_t *);
  208. int xfs_trans_ail_init(struct xfs_mount *);
  209. void xfs_trans_ail_destroy(struct xfs_mount *);
  210. void xfs_trans_buf_set_type(struct xfs_trans *, struct xfs_buf *,
  211. enum xfs_blft);
  212. void xfs_trans_buf_copy_type(struct xfs_buf *dst_bp,
  213. struct xfs_buf *src_bp);
  214. extern kmem_zone_t *xfs_trans_zone;
  215. extern kmem_zone_t *xfs_log_item_desc_zone;
  216. /* rmap updates */
  217. enum xfs_rmap_intent_type;
  218. void xfs_rmap_update_init_defer_op(void);
  219. struct xfs_rud_log_item *xfs_trans_get_rud(struct xfs_trans *tp,
  220. struct xfs_rui_log_item *ruip);
  221. int xfs_trans_log_finish_rmap_update(struct xfs_trans *tp,
  222. struct xfs_rud_log_item *rudp, enum xfs_rmap_intent_type type,
  223. uint64_t owner, int whichfork, xfs_fileoff_t startoff,
  224. xfs_fsblock_t startblock, xfs_filblks_t blockcount,
  225. xfs_exntst_t state, struct xfs_btree_cur **pcur);
  226. /* refcount updates */
  227. enum xfs_refcount_intent_type;
  228. void xfs_refcount_update_init_defer_op(void);
  229. struct xfs_cud_log_item *xfs_trans_get_cud(struct xfs_trans *tp,
  230. struct xfs_cui_log_item *cuip);
  231. int xfs_trans_log_finish_refcount_update(struct xfs_trans *tp,
  232. struct xfs_cud_log_item *cudp, struct xfs_defer_ops *dfops,
  233. enum xfs_refcount_intent_type type, xfs_fsblock_t startblock,
  234. xfs_extlen_t blockcount, xfs_fsblock_t *new_fsb,
  235. xfs_extlen_t *new_len, struct xfs_btree_cur **pcur);
  236. /* mapping updates */
  237. enum xfs_bmap_intent_type;
  238. void xfs_bmap_update_init_defer_op(void);
  239. struct xfs_bud_log_item *xfs_trans_get_bud(struct xfs_trans *tp,
  240. struct xfs_bui_log_item *buip);
  241. int xfs_trans_log_finish_bmap_update(struct xfs_trans *tp,
  242. struct xfs_bud_log_item *rudp, struct xfs_defer_ops *dfops,
  243. enum xfs_bmap_intent_type type, struct xfs_inode *ip,
  244. int whichfork, xfs_fileoff_t startoff, xfs_fsblock_t startblock,
  245. xfs_filblks_t *blockcount, xfs_exntst_t state);
  246. #endif /* __XFS_TRANS_H__ */