diff options
author | Christoph Hellwig | 2016-03-02 09:58:21 +1100 |
---|---|---|
committer | Dave Chinner | 2016-03-02 09:58:21 +1100 |
commit | a7e5d03ba8882aa772c691f16690fe7e73cee257 (patch) | |
tree | dbb0d2db81a19d5f3fd1514a4c6f5eef0965c40f /fs/xfs/xfs_trans.h | |
parent | 12c3f05c7b592ae3bf2219392f1cbf252645cd79 (diff) |
xfs: remove xfs_trans_get_block_res
Just use the t_blk_res field directly instead of obsfucating the reference
by a macro.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_trans.h')
-rw-r--r-- | fs/xfs/xfs_trans.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h index 4643070d7cae..e7c49cf43fbc 100644 --- a/fs/xfs/xfs_trans.h +++ b/fs/xfs/xfs_trans.h @@ -133,7 +133,6 @@ typedef struct xfs_trans { * XFS transaction mechanism exported interfaces that are * actually macros. */ -#define xfs_trans_get_block_res(tp) ((tp)->t_blk_res) #define xfs_trans_set_sync(tp) ((tp)->t_flags |= XFS_TRANS_SYNC) #if defined(DEBUG) || defined(XFS_WARN) |