xfs_trans.h 10 KB

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