diff options
Diffstat (limited to 'fs/xfs/xfs_trans.h')
-rw-r--r-- | fs/xfs/xfs_trans.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h index a263aec8b3a6..0cc7af5c1f00 100644 --- a/fs/xfs/xfs_trans.h +++ b/fs/xfs/xfs_trans.h | |||
@@ -1025,7 +1025,12 @@ void xfs_trans_log_efd_extent(xfs_trans_t *, | |||
1025 | struct xfs_efd_log_item *, | 1025 | struct xfs_efd_log_item *, |
1026 | xfs_fsblock_t, | 1026 | xfs_fsblock_t, |
1027 | xfs_extlen_t); | 1027 | xfs_extlen_t); |
1028 | int xfs_trans_commit(xfs_trans_t *, uint flags, xfs_lsn_t *); | 1028 | int _xfs_trans_commit(xfs_trans_t *, |
1029 | uint flags, | ||
1030 | xfs_lsn_t *, | ||
1031 | int *); | ||
1032 | #define xfs_trans_commit(tp, flags, lsn) \ | ||
1033 | _xfs_trans_commit(tp, flags, lsn, NULL) | ||
1029 | void xfs_trans_cancel(xfs_trans_t *, int); | 1034 | void xfs_trans_cancel(xfs_trans_t *, int); |
1030 | void xfs_trans_ail_init(struct xfs_mount *); | 1035 | void xfs_trans_ail_init(struct xfs_mount *); |
1031 | xfs_lsn_t xfs_trans_push_ail(struct xfs_mount *, xfs_lsn_t); | 1036 | xfs_lsn_t xfs_trans_push_ail(struct xfs_mount *, xfs_lsn_t); |