xfs_trans.h 10.0 KB

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