summaryrefslogtreecommitdiff
path: root/sys/dev/vn
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1998-07-04 20:45:42 +0000
committerJulian Elischer <julian@FreeBSD.org>1998-07-04 20:45:42 +0000
commitfd5d1124e25f9996b0bfbf17156d850d106b27b4 (patch)
tree64544e473d50bcc2f730bd7ed50ba239b54ffed3 /sys/dev/vn
parent52f8e5d6723e9a1340f013b3bf36d7b512023307 (diff)
Notes
Diffstat (limited to 'sys/dev/vn')
-rw-r--r--sys/dev/vn/vn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/vn/vn.c b/sys/dev/vn/vn.c
index 437068962b78..b94fa9083186 100644
--- a/sys/dev/vn/vn.c
+++ b/sys/dev/vn/vn.c
@@ -38,7 +38,7 @@
* from: Utah Hdr: vn.c 1.13 94/04/02
*
* from: @(#)vn.c 8.6 (Berkeley) 4/1/94
- * $Id: vn.c,v 1.61 1998/06/07 20:10:53 dfr Exp $
+ * $Id: vn.c,v 1.62 1998/07/04 00:27:48 julian Exp $
*/
/*
@@ -401,7 +401,7 @@ vnstrategy(struct buf *bp)
if ((nbp->b_flags & B_READ) == 0)
nbp->b_vp->v_numoutput++;
- VOP_STRATEGY(nbp);
+ VOP_STRATEGY(vp, nbp);
s = splbio();
while ((nbp->b_flags & B_DONE) == 0) {
@@ -574,7 +574,7 @@ nvsIOreq(void *private ,struct buf *bp)
if ((nbp->b_flags & B_READ) == 0)
nbp->b_vp->v_numoutput++;
- VOP_STRATEGY(nbp);
+ VOP_STRATEGY(vp, nbp);
s = splbio();
while ((nbp->b_flags & B_DONE) == 0) {