diff options
author | Christoph Hellwig <hch@infradead.org> | 2011-10-10 12:52:46 -0400 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2011-10-11 22:15:10 -0400 |
commit | c867cb61641751fd3d86350232d64ae2a10137d4 (patch) | |
tree | 414d38d5edd941cee2eb07f9eeb7ebaa29d1cd5b /fs/xfs/xfs_buf.h | |
parent | 38f23232449c9d2c0bc8e9541cb8ab08b7c2b9ce (diff) |
xfs: remove XFS_BUF_STALE and XFS_BUF_SUPER_STALE
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_buf.h')
-rw-r--r-- | fs/xfs/xfs_buf.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/xfs/xfs_buf.h b/fs/xfs/xfs_buf.h index ca2934717343..fa38401449d9 100644 --- a/fs/xfs/xfs_buf.h +++ b/fs/xfs/xfs_buf.h | |||
@@ -242,14 +242,8 @@ xfs_buf_target_name(struct xfs_buftarg *target) | |||
242 | XBF_SYNCIO|XBF_FUA|XBF_FLUSH)) | 242 | XBF_SYNCIO|XBF_FUA|XBF_FLUSH)) |
243 | 243 | ||
244 | void xfs_buf_stale(struct xfs_buf *bp); | 244 | void xfs_buf_stale(struct xfs_buf *bp); |
245 | #define XFS_BUF_STALE(bp) xfs_buf_stale(bp); | ||
246 | #define XFS_BUF_UNSTALE(bp) ((bp)->b_flags &= ~XBF_STALE) | 245 | #define XFS_BUF_UNSTALE(bp) ((bp)->b_flags &= ~XBF_STALE) |
247 | #define XFS_BUF_ISSTALE(bp) ((bp)->b_flags & XBF_STALE) | 246 | #define XFS_BUF_ISSTALE(bp) ((bp)->b_flags & XBF_STALE) |
248 | #define XFS_BUF_SUPER_STALE(bp) do { \ | ||
249 | XFS_BUF_STALE(bp); \ | ||
250 | xfs_buf_delwri_dequeue(bp); \ | ||
251 | XFS_BUF_DONE(bp); \ | ||
252 | } while (0) | ||
253 | 247 | ||
254 | #define XFS_BUF_ISDELAYWRITE(bp) ((bp)->b_flags & XBF_DELWRI) | 248 | #define XFS_BUF_ISDELAYWRITE(bp) ((bp)->b_flags & XBF_DELWRI) |
255 | 249 | ||