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.c | |
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.c')
-rw-r--r-- | fs/xfs/xfs_buf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_buf.c b/fs/xfs/xfs_buf.c index 36fed03da26f..f88eab9e8144 100644 --- a/fs/xfs/xfs_buf.c +++ b/fs/xfs/xfs_buf.c | |||
@@ -1061,7 +1061,7 @@ xfs_bioerror( | |||
1061 | XFS_BUF_UNREAD(bp); | 1061 | XFS_BUF_UNREAD(bp); |
1062 | xfs_buf_delwri_dequeue(bp); | 1062 | xfs_buf_delwri_dequeue(bp); |
1063 | XFS_BUF_UNDONE(bp); | 1063 | XFS_BUF_UNDONE(bp); |
1064 | XFS_BUF_STALE(bp); | 1064 | xfs_buf_stale(bp); |
1065 | 1065 | ||
1066 | xfs_buf_ioend(bp, 0); | 1066 | xfs_buf_ioend(bp, 0); |
1067 | 1067 | ||
@@ -1090,7 +1090,7 @@ xfs_bioerror_relse( | |||
1090 | XFS_BUF_UNREAD(bp); | 1090 | XFS_BUF_UNREAD(bp); |
1091 | xfs_buf_delwri_dequeue(bp); | 1091 | xfs_buf_delwri_dequeue(bp); |
1092 | XFS_BUF_DONE(bp); | 1092 | XFS_BUF_DONE(bp); |
1093 | XFS_BUF_STALE(bp); | 1093 | xfs_buf_stale(bp); |
1094 | bp->b_iodone = NULL; | 1094 | bp->b_iodone = NULL; |
1095 | if (!(fl & XBF_ASYNC)) { | 1095 | if (!(fl & XBF_ASYNC)) { |
1096 | /* | 1096 | /* |