xfs_trans.h 8.6 KB

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