diff options
author | Dave Chinner <dchinner@redhat.com> | 2016-02-10 04:01:11 (GMT) |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-02-10 04:01:11 (GMT) |
commit | b68c08219a6726fb68dca2d56e024d2e2c1654f5 (patch) | |
tree | 82679c08cbb2d9137f1134ba28933c92498072c0 /fs/xfs/xfs_buf.h | |
parent | 0cac682ff683bac968c24a4774c69c3a9ff35013 (diff) | |
download | linux-b68c08219a6726fb68dca2d56e024d2e2c1654f5.tar.xz |
xfs: remove XBF_WRITE 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_buf.h')
-rw-r--r-- | fs/xfs/xfs_buf.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/xfs/xfs_buf.h b/fs/xfs/xfs_buf.h index 329e612..a118962 100644 --- a/fs/xfs/xfs_buf.h +++ b/fs/xfs/xfs_buf.h @@ -321,10 +321,6 @@ void xfs_buf_stale(struct xfs_buf *bp); #define XFS_BUF_UNSTALE(bp) ((bp)->b_flags &= ~XBF_STALE) #define XFS_BUF_ISSTALE(bp) ((bp)->b_flags & XBF_STALE) -#define XFS_BUF_WRITE(bp) ((bp)->b_flags |= XBF_WRITE) -#define XFS_BUF_UNWRITE(bp) ((bp)->b_flags &= ~XBF_WRITE) -#define XFS_BUF_ISWRITE(bp) ((bp)->b_flags & XBF_WRITE) - /* * These macros use the IO block map rather than b_bn. b_bn is now really * just for the buffer cache index for cached buffers. As IO does not use b_bn |