aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1999-03-02 20:26:39 +0000
committerJulian Elischer <julian@FreeBSD.org>1999-03-02 20:26:39 +0000
commit8b3bd4234181c846d8c9fdffeb32cc71faff84ad (patch)
tree67d606c7981fbff3a8c4a871a81a079956c05f9d
parent7e8dac41cbcbf89b225ed22746bd203956b3a480 (diff)
Notes
-rw-r--r--sys/kern/vfs_bio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index 7511159772823..b9fd96a580644 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -11,7 +11,7 @@
* 2. Absolutely no warranty of function or purpose is made by the author
* John S. Dyson.
*
- * $Id: vfs_bio.c,v 1.198 1999/01/24 00:51:11 dillon Exp $
+ * $Id: vfs_bio.c,v 1.199 1999/01/27 21:49:58 dillon Exp $
*/
/*
@@ -1551,7 +1551,7 @@ loop:
* Normally the vnode is locked so this isn't a problem.
* VBLK type I/O requests, however, don't lock the vnode.
*/
- if (VOP_ISLOCKED(vp) != LK_EXCLUSIVE && gbincore(vp, blkno)) {
+ if (gbincore(vp, blkno)) {
bp->b_flags |= B_INVAL;
brelse(bp);
goto loop;