diff options
Diffstat (limited to 'fs/xfs/xfs_trans_priv.h')
-rw-r--r-- | fs/xfs/xfs_trans_priv.h | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/fs/xfs/xfs_trans_priv.h b/fs/xfs/xfs_trans_priv.h index 73e2ad397432..e2d93d8ead7b 100644 --- a/fs/xfs/xfs_trans_priv.h +++ b/fs/xfs/xfs_trans_priv.h | |||
@@ -23,25 +23,12 @@ struct xfs_log_item_desc; | |||
23 | struct xfs_mount; | 23 | struct xfs_mount; |
24 | struct xfs_trans; | 24 | struct xfs_trans; |
25 | 25 | ||
26 | /* | 26 | void xfs_trans_add_item(struct xfs_trans *, struct xfs_log_item *); |
27 | * From xfs_trans_item.c | 27 | void xfs_trans_del_item(struct xfs_log_item *); |
28 | */ | 28 | |
29 | struct xfs_log_item_desc *xfs_trans_add_item(struct xfs_trans *, | 29 | void xfs_trans_item_committed(struct xfs_log_item *lip, |
30 | struct xfs_log_item *); | 30 | xfs_lsn_t commit_lsn, int aborted); |
31 | void xfs_trans_free_item(struct xfs_trans *, | 31 | void xfs_trans_unreserve_and_mod_sb(struct xfs_trans *tp); |
32 | struct xfs_log_item_desc *); | ||
33 | struct xfs_log_item_desc *xfs_trans_find_item(struct xfs_trans *, | ||
34 | struct xfs_log_item *); | ||
35 | struct xfs_log_item_desc *xfs_trans_first_item(struct xfs_trans *); | ||
36 | struct xfs_log_item_desc *xfs_trans_next_item(struct xfs_trans *, | ||
37 | struct xfs_log_item_desc *); | ||
38 | void xfs_trans_free_items(struct xfs_trans *, int); | ||
39 | void xfs_trans_unlock_items(struct xfs_trans *, | ||
40 | xfs_lsn_t); | ||
41 | void xfs_trans_free_busy(xfs_trans_t *tp); | ||
42 | xfs_log_busy_slot_t *xfs_trans_add_busy(xfs_trans_t *tp, | ||
43 | xfs_agnumber_t ag, | ||
44 | xfs_extlen_t idx); | ||
45 | 32 | ||
46 | /* | 33 | /* |
47 | * AIL traversal cursor. | 34 | * AIL traversal cursor. |