diff options
author | Dave Chinner <dchinner@redhat.com> | 2016-02-10 05:01:11 +0100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-02-10 05:01:11 +0100 |
commit | b0388bf1088d992b45aa8af14d3151ae57848b17 (patch) | |
tree | 9fb05eb4c651cdfe45863b42d3327ceb961ffeab /fs/xfs/xfs_mount.c | |
parent | Linux 4.5-rc2 (diff) | |
download | linux-b0388bf1088d992b45aa8af14d3151ae57848b17.tar.xz linux-b0388bf1088d992b45aa8af14d3151ae57848b17.zip |
xfs: remove XBF_DONE flag wrapper macros
They only set/clear/check a flag, no need for obfuscating this
with a macro.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_mount.c')
-rw-r--r-- | fs/xfs/xfs_mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index bb753b359bee..2c951899344a 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c @@ -1284,7 +1284,7 @@ xfs_getsb( } xfs_buf_hold(bp); - ASSERT(XFS_BUF_ISDONE(bp)); + ASSERT(bp->b_flags & XBF_DONE); return bp; } |