xfs_trans.h 10 KB

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