aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_inode.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2011-10-10 12:52:46 -0400
committerAlex Elder <aelder@sgi.com>2011-10-11 22:15:10 -0400
commitc867cb61641751fd3d86350232d64ae2a10137d4 (patch)
tree414d38d5edd941cee2eb07f9eeb7ebaa29d1cd5b /fs/xfs/xfs_inode.c
parent38f23232449c9d2c0bc8e9541cb8ab08b7c2b9ce (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_inode.c')
-rw-r--r--fs/xfs/xfs_inode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
index 21cec6cdf45..c0237c602f1 100644
--- a/fs/xfs/xfs_inode.c
+++ b/fs/xfs/xfs_inode.c
@@ -2469,11 +2469,11 @@ cluster_corrupt_out:
2469 */ 2469 */
2470 if (bp->b_iodone) { 2470 if (bp->b_iodone) {
2471 XFS_BUF_UNDONE(bp); 2471 XFS_BUF_UNDONE(bp);
2472 XFS_BUF_STALE(bp); 2472 xfs_buf_stale(bp);
2473 xfs_buf_ioerror(bp, EIO); 2473 xfs_buf_ioerror(bp, EIO);
2474 xfs_buf_ioend(bp, 0); 2474 xfs_buf_ioend(bp, 0);
2475 } else { 2475 } else {
2476 XFS_BUF_STALE(bp); 2476 xfs_buf_stale(bp);
2477 xfs_buf_relse(bp); 2477 xfs_buf_relse(bp);
2478 } 2478 }
2479 } 2479 }