Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | #ifndef __XFS_TRANS_H__ |
| 19 | #define __XFS_TRANS_H__ |
| 20 | |
Dave Chinner | 7fd36c4 | 2013-08-12 20:49:32 +1000 | [diff] [blame] | 21 | /* kernel only transaction subsystem defines */ |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 22 | |
| 23 | struct xfs_buf; |
| 24 | struct xfs_buftarg; |
| 25 | struct xfs_efd_log_item; |
| 26 | struct xfs_efi_log_item; |
| 27 | struct xfs_inode; |
| 28 | struct xfs_item_ops; |
| 29 | struct xfs_log_iovec; |
| 30 | struct xfs_log_item_desc; |
| 31 | struct xfs_mount; |
| 32 | struct xfs_trans; |
Jie Liu | 3d3c8b5 | 2013-08-12 20:49:59 +1000 | [diff] [blame] | 33 | struct xfs_trans_res; |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 34 | struct xfs_dquot_acct; |
Dave Chinner | ed3b4d6 | 2010-05-21 12:07:08 +1000 | [diff] [blame] | 35 | struct xfs_busy_extent; |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 36 | |
| 37 | typedef struct xfs_log_item { |
| 38 | struct list_head li_ail; /* AIL pointers */ |
| 39 | xfs_lsn_t li_lsn; /* last on-disk lsn */ |
| 40 | struct xfs_log_item_desc *li_desc; /* ptr to current desc*/ |
| 41 | struct xfs_mount *li_mountp; /* ptr to fs mount */ |
David Chinner | fc1829f | 2008-10-30 17:39:46 +1100 | [diff] [blame] | 42 | struct xfs_ail *li_ailp; /* ptr to AIL */ |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 43 | uint li_type; /* item type */ |
| 44 | uint li_flags; /* misc flags */ |
| 45 | struct xfs_log_item *li_bio_list; /* buffer item list */ |
| 46 | void (*li_cb)(struct xfs_buf *, |
| 47 | struct xfs_log_item *); |
| 48 | /* buffer item iodone */ |
| 49 | /* callback func */ |
Christoph Hellwig | 272e42b | 2011-10-28 09:54:24 +0000 | [diff] [blame] | 50 | const struct xfs_item_ops *li_ops; /* function list */ |
Dave Chinner | 71e330b | 2010-05-21 14:37:18 +1000 | [diff] [blame] | 51 | |
| 52 | /* delayed logging */ |
| 53 | struct list_head li_cil; /* CIL pointers */ |
| 54 | struct xfs_log_vec *li_lv; /* active log vector */ |
Dave Chinner | b1c5ebb | 2016-07-22 09:52:35 +1000 | [diff] [blame^] | 55 | struct xfs_log_vec *li_lv_shadow; /* standby vector */ |
Dave Chinner | ccf7c23 | 2010-05-20 23:19:42 +1000 | [diff] [blame] | 56 | xfs_lsn_t li_seq; /* CIL commit seq */ |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 57 | } xfs_log_item_t; |
| 58 | |
| 59 | #define XFS_LI_IN_AIL 0x1 |
| 60 | #define XFS_LI_ABORTED 0x2 |
| 61 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 62 | #define XFS_LI_FLAGS \ |
| 63 | { XFS_LI_IN_AIL, "IN_AIL" }, \ |
| 64 | { XFS_LI_ABORTED, "ABORTED" } |
| 65 | |
Christoph Hellwig | 272e42b | 2011-10-28 09:54:24 +0000 | [diff] [blame] | 66 | struct xfs_item_ops { |
Dave Chinner | 166d136 | 2013-08-12 20:50:04 +1000 | [diff] [blame] | 67 | void (*iop_size)(xfs_log_item_t *, int *, int *); |
Christoph Hellwig | bde7cff | 2013-12-13 11:34:02 +1100 | [diff] [blame] | 68 | void (*iop_format)(xfs_log_item_t *, struct xfs_log_vec *); |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 69 | void (*iop_pin)(xfs_log_item_t *); |
Christoph Hellwig | 9412e31 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 70 | void (*iop_unpin)(xfs_log_item_t *, int remove); |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 71 | uint (*iop_push)(struct xfs_log_item *, struct list_head *); |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 72 | void (*iop_unlock)(xfs_log_item_t *); |
| 73 | xfs_lsn_t (*iop_committed)(xfs_log_item_t *, xfs_lsn_t); |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 74 | void (*iop_committing)(xfs_log_item_t *, xfs_lsn_t); |
Christoph Hellwig | 272e42b | 2011-10-28 09:54:24 +0000 | [diff] [blame] | 75 | }; |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 76 | |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 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 | |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 80 | /* |
Dave Chinner | 904c17e | 2013-08-28 21:12:03 +1000 | [diff] [blame] | 81 | * Return values for the iop_push() routines. |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 82 | */ |
Christoph Hellwig | 43ff212 | 2012-04-23 15:58:39 +1000 | [diff] [blame] | 83 | #define XFS_ITEM_SUCCESS 0 |
| 84 | #define XFS_ITEM_PINNED 1 |
| 85 | #define XFS_ITEM_LOCKED 2 |
| 86 | #define XFS_ITEM_FLUSHING 3 |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 87 | |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 88 | |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 89 | /* |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 90 | * This is the structure maintained for every active transaction. |
| 91 | */ |
| 92 | typedef struct xfs_trans { |
| 93 | unsigned int t_magic; /* magic number */ |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 94 | unsigned int t_log_res; /* amt of log space resvd */ |
| 95 | unsigned int t_log_count; /* count for perm log res */ |
| 96 | unsigned int t_blk_res; /* # of blocks resvd */ |
| 97 | unsigned int t_blk_res_used; /* # of resvd blocks used */ |
| 98 | unsigned int t_rtx_res; /* # of rt extents resvd */ |
| 99 | unsigned int t_rtx_res_used; /* # of resvd rt extents used */ |
Christoph Hellwig | 35a8a72 | 2010-02-15 23:34:54 +0000 | [diff] [blame] | 100 | struct xlog_ticket *t_ticket; /* log mgr ticket */ |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 101 | xfs_lsn_t t_lsn; /* log seq num of start of |
| 102 | * transaction. */ |
| 103 | xfs_lsn_t t_commit_lsn; /* log seq num of end of |
| 104 | * transaction. */ |
| 105 | struct xfs_mount *t_mountp; /* ptr to fs mount struct */ |
| 106 | struct xfs_dquot_acct *t_dqinfo; /* acctg info for dquots */ |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 107 | unsigned int t_flags; /* misc flags */ |
| 108 | int64_t t_icount_delta; /* superblock icount change */ |
| 109 | int64_t t_ifree_delta; /* superblock ifree change */ |
| 110 | int64_t t_fdblocks_delta; /* superblock fdblocks chg */ |
| 111 | int64_t t_res_fdblocks_delta; /* on-disk only chg */ |
| 112 | int64_t t_frextents_delta;/* superblock freextents chg*/ |
| 113 | int64_t t_res_frextents_delta; /* on-disk only chg */ |
Dave Chinner | 742ae1e | 2013-04-30 21:39:34 +1000 | [diff] [blame] | 114 | #if defined(DEBUG) || defined(XFS_WARN) |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 115 | int64_t t_ag_freeblks_delta; /* debugging counter */ |
| 116 | int64_t t_ag_flist_delta; /* debugging counter */ |
| 117 | int64_t t_ag_btree_delta; /* debugging counter */ |
| 118 | #endif |
| 119 | int64_t t_dblocks_delta;/* superblock dblocks change */ |
| 120 | int64_t t_agcount_delta;/* superblock agcount change */ |
| 121 | int64_t t_imaxpct_delta;/* superblock imaxpct change */ |
| 122 | int64_t t_rextsize_delta;/* superblock rextsize chg */ |
| 123 | int64_t t_rbmblocks_delta;/* superblock rbmblocks chg */ |
| 124 | int64_t t_rblocks_delta;/* superblock rblocks change */ |
| 125 | int64_t t_rextents_delta;/* superblocks rextents chg */ |
| 126 | int64_t t_rextslog_delta;/* superblocks rextslog chg */ |
Christoph Hellwig | e98c414 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 127 | struct list_head t_items; /* log item descriptors */ |
Dave Chinner | ed3b4d6 | 2010-05-21 12:07:08 +1000 | [diff] [blame] | 128 | struct list_head t_busy; /* list of busy extents */ |
Barry Naujok | 847fff5 | 2008-10-30 17:05:38 +1100 | [diff] [blame] | 129 | unsigned long t_pflags; /* saved process flags state */ |
| 130 | } xfs_trans_t; |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | /* |
| 133 | * XFS transaction mechanism exported interfaces that are |
| 134 | * actually macros. |
| 135 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | #define xfs_trans_set_sync(tp) ((tp)->t_flags |= XFS_TRANS_SYNC) |
| 137 | |
Dave Chinner | 742ae1e | 2013-04-30 21:39:34 +1000 | [diff] [blame] | 138 | #if defined(DEBUG) || defined(XFS_WARN) |
David Chinner | 20f4ebf | 2007-02-10 18:36:10 +1100 | [diff] [blame] | 139 | #define xfs_trans_agblocks_delta(tp, d) ((tp)->t_ag_freeblks_delta += (int64_t)d) |
| 140 | #define xfs_trans_agflist_delta(tp, d) ((tp)->t_ag_flist_delta += (int64_t)d) |
| 141 | #define xfs_trans_agbtree_delta(tp, d) ((tp)->t_ag_btree_delta += (int64_t)d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | #else |
| 143 | #define xfs_trans_agblocks_delta(tp, d) |
| 144 | #define xfs_trans_agflist_delta(tp, d) |
| 145 | #define xfs_trans_agbtree_delta(tp, d) |
| 146 | #endif |
| 147 | |
| 148 | /* |
| 149 | * XFS transaction mechanism exported interfaces. |
| 150 | */ |
Christoph Hellwig | 253f491 | 2016-04-06 09:19:55 +1000 | [diff] [blame] | 151 | int xfs_trans_alloc(struct xfs_mount *mp, struct xfs_trans_res *resp, |
| 152 | uint blocks, uint rtextents, uint flags, |
| 153 | struct xfs_trans **tpp); |
David Chinner | 20f4ebf | 2007-02-10 18:36:10 +1100 | [diff] [blame] | 154 | void xfs_trans_mod_sb(xfs_trans_t *, uint, int64_t); |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 155 | |
| 156 | struct xfs_buf *xfs_trans_get_buf_map(struct xfs_trans *tp, |
| 157 | struct xfs_buftarg *target, |
| 158 | struct xfs_buf_map *map, int nmaps, |
| 159 | uint flags); |
| 160 | |
| 161 | static inline struct xfs_buf * |
| 162 | xfs_trans_get_buf( |
| 163 | struct xfs_trans *tp, |
| 164 | struct xfs_buftarg *target, |
| 165 | xfs_daddr_t blkno, |
| 166 | int numblks, |
| 167 | uint flags) |
| 168 | { |
Dave Chinner | c3f8fc7 | 2012-11-12 22:54:01 +1100 | [diff] [blame] | 169 | DEFINE_SINGLE_BUF_MAP(map, blkno, numblks); |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 170 | return xfs_trans_get_buf_map(tp, target, &map, 1, flags); |
| 171 | } |
| 172 | |
| 173 | int xfs_trans_read_buf_map(struct xfs_mount *mp, |
| 174 | struct xfs_trans *tp, |
| 175 | struct xfs_buftarg *target, |
| 176 | struct xfs_buf_map *map, int nmaps, |
| 177 | xfs_buf_flags_t flags, |
Dave Chinner | c3f8fc7 | 2012-11-12 22:54:01 +1100 | [diff] [blame] | 178 | struct xfs_buf **bpp, |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 179 | const struct xfs_buf_ops *ops); |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 180 | |
| 181 | static inline int |
| 182 | xfs_trans_read_buf( |
| 183 | struct xfs_mount *mp, |
| 184 | struct xfs_trans *tp, |
| 185 | struct xfs_buftarg *target, |
| 186 | xfs_daddr_t blkno, |
| 187 | int numblks, |
| 188 | xfs_buf_flags_t flags, |
Dave Chinner | c3f8fc7 | 2012-11-12 22:54:01 +1100 | [diff] [blame] | 189 | struct xfs_buf **bpp, |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 190 | const struct xfs_buf_ops *ops) |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 191 | { |
Dave Chinner | c3f8fc7 | 2012-11-12 22:54:01 +1100 | [diff] [blame] | 192 | DEFINE_SINGLE_BUF_MAP(map, blkno, numblks); |
| 193 | return xfs_trans_read_buf_map(mp, tp, target, &map, 1, |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 194 | flags, bpp, ops); |
Dave Chinner | de2a4f5 | 2012-06-22 18:50:11 +1000 | [diff] [blame] | 195 | } |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | struct xfs_buf *xfs_trans_getsb(xfs_trans_t *, struct xfs_mount *, int); |
| 198 | |
| 199 | void xfs_trans_brelse(xfs_trans_t *, struct xfs_buf *); |
| 200 | void xfs_trans_bjoin(xfs_trans_t *, struct xfs_buf *); |
| 201 | void xfs_trans_bhold(xfs_trans_t *, struct xfs_buf *); |
Tim Shimmin | efa092f | 2005-09-05 08:29:01 +1000 | [diff] [blame] | 202 | void xfs_trans_bhold_release(xfs_trans_t *, struct xfs_buf *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | void xfs_trans_binval(xfs_trans_t *, struct xfs_buf *); |
| 204 | void xfs_trans_inode_buf(xfs_trans_t *, struct xfs_buf *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | void xfs_trans_stale_inode_buf(xfs_trans_t *, struct xfs_buf *); |
Dave Chinner | 5f6bed7 | 2013-06-27 16:04:52 +1000 | [diff] [blame] | 206 | void xfs_trans_ordered_buf(xfs_trans_t *, struct xfs_buf *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | void xfs_trans_dquot_buf(xfs_trans_t *, struct xfs_buf *, uint); |
| 208 | void xfs_trans_inode_alloc_buf(xfs_trans_t *, struct xfs_buf *); |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 209 | void xfs_trans_ichgtime(struct xfs_trans *, struct xfs_inode *, int); |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 210 | void xfs_trans_ijoin(struct xfs_trans *, struct xfs_inode *, uint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | void xfs_trans_log_buf(xfs_trans_t *, struct xfs_buf *, uint, uint); |
| 212 | void xfs_trans_log_inode(xfs_trans_t *, struct xfs_inode *, uint); |
| 213 | struct xfs_efi_log_item *xfs_trans_get_efi(xfs_trans_t *, uint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | void xfs_trans_log_efi_extent(xfs_trans_t *, |
| 215 | struct xfs_efi_log_item *, |
| 216 | xfs_fsblock_t, |
| 217 | xfs_extlen_t); |
| 218 | struct xfs_efd_log_item *xfs_trans_get_efd(xfs_trans_t *, |
| 219 | struct xfs_efi_log_item *, |
| 220 | uint); |
Brian Foster | 6bc43af | 2015-08-19 09:51:43 +1000 | [diff] [blame] | 221 | int xfs_trans_free_extent(struct xfs_trans *, |
| 222 | struct xfs_efd_log_item *, xfs_fsblock_t, |
| 223 | xfs_extlen_t); |
Christoph Hellwig | 7039331 | 2015-06-04 13:48:08 +1000 | [diff] [blame] | 224 | int xfs_trans_commit(struct xfs_trans *); |
Brian Foster | d43ac29 | 2015-08-19 09:50:13 +1000 | [diff] [blame] | 225 | int __xfs_trans_roll(struct xfs_trans **, struct xfs_inode *, int *); |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 226 | int xfs_trans_roll(struct xfs_trans **, struct xfs_inode *); |
Christoph Hellwig | 4906e21 | 2015-06-04 13:47:56 +1000 | [diff] [blame] | 227 | void xfs_trans_cancel(xfs_trans_t *); |
David Chinner | 249a8c1 | 2008-02-05 12:13:32 +1100 | [diff] [blame] | 228 | int xfs_trans_ail_init(struct xfs_mount *); |
| 229 | void xfs_trans_ail_destroy(struct xfs_mount *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 231 | void xfs_trans_buf_set_type(struct xfs_trans *, struct xfs_buf *, |
| 232 | enum xfs_blft); |
| 233 | void xfs_trans_buf_copy_type(struct xfs_buf *dst_bp, |
| 234 | struct xfs_buf *src_bp); |
| 235 | |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 236 | extern kmem_zone_t *xfs_trans_zone; |
Christoph Hellwig | e98c414 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 237 | extern kmem_zone_t *xfs_log_item_desc_zone; |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | #endif /* __XFS_TRANS_H__ */ |