diff options
author | Eric Sandeen <sandeen@sandeen.net> | 2019-06-12 08:59:58 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-06-12 08:59:58 -0700 |
commit | 8c9ce2f707a1571782b4d3d100af627b6d147357 (patch) | |
tree | c33fe7af5bcefb6e2802ac9a10a0dffcf493e271 /fs/xfs/xfs_trans.h | |
parent | d03a2f1b9fa83ee88acb4fd92c66240aff628488 (diff) | |
download | linux-8c9ce2f707a1571782b4d3d100af627b6d147357.tar.gz linux-8c9ce2f707a1571782b4d3d100af627b6d147357.tar.bz2 linux-8c9ce2f707a1571782b4d3d100af627b6d147357.zip |
xfs: remove unused flags arg from getsb interfaces
The flags value is always passed as 0 so remove the argument.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_trans.h')
-rw-r--r-- | fs/xfs/xfs_trans.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h index c6e1c5704a8c..fd35da161a2b 100644 --- a/fs/xfs/xfs_trans.h +++ b/fs/xfs/xfs_trans.h @@ -203,7 +203,7 @@ xfs_trans_read_buf( flags, bpp, ops); } -struct xfs_buf *xfs_trans_getsb(xfs_trans_t *, struct xfs_mount *, int); +struct xfs_buf *xfs_trans_getsb(xfs_trans_t *, struct xfs_mount *); void xfs_trans_brelse(xfs_trans_t *, struct xfs_buf *); void xfs_trans_bjoin(xfs_trans_t *, struct xfs_buf *); |