diff options
author | Lachlan McIlroy <lachlan@sgi.com> | 2007-11-23 00:31:00 -0500 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2007-12-09 21:46:45 -0500 |
commit | 77be55a5a13d9c7ddf780a93861f2fba33f8be1a (patch) | |
tree | 6ac9c9f5f8acb57d49bd58169d3bca54f03ae1d0 /fs | |
parent | d1afb678ce77b930334a8a640a05b8e68178a377 (diff) |
[XFS] Clear XBF_READ_AHEAD flag on I/O completion.
SGI-PV: 972554
SGI-Modid: xfs-linux-melb:xfs-kern:30128a
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_buf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_buf.c b/fs/xfs/linux-2.6/xfs_buf.c index 48bf477cbca5..43d6c7a290e2 100644 --- a/fs/xfs/linux-2.6/xfs_buf.c +++ b/fs/xfs/linux-2.6/xfs_buf.c | |||
@@ -1025,7 +1025,7 @@ xfs_buf_ioend( | |||
1025 | xfs_buf_t *bp, | 1025 | xfs_buf_t *bp, |
1026 | int schedule) | 1026 | int schedule) |
1027 | { | 1027 | { |
1028 | bp->b_flags &= ~(XBF_READ | XBF_WRITE); | 1028 | bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD); |
1029 | if (bp->b_error == 0) | 1029 | if (bp->b_error == 0) |
1030 | bp->b_flags |= XBF_DONE; | 1030 | bp->b_flags |= XBF_DONE; |
1031 | 1031 | ||