aboutsummaryrefslogtreecommitdiff
path: root/sys/miscfs
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/miscfs
parent52f8e5d6723e9a1340f013b3bf36d7b512023307 (diff)
Notes
Diffstat (limited to 'sys/miscfs')
-rw-r--r--sys/miscfs/nullfs/null_vnops.c6
-rw-r--r--sys/miscfs/specfs/spec_vnops.c4
-rw-r--r--sys/miscfs/umapfs/umap_vnops.c5
-rw-r--r--sys/miscfs/union/union_vnops.c5
4 files changed, 11 insertions, 9 deletions
diff --git a/sys/miscfs/nullfs/null_vnops.c b/sys/miscfs/nullfs/null_vnops.c
index a299e27d2462..1398e3432539 100644
--- a/sys/miscfs/nullfs/null_vnops.c
+++ b/sys/miscfs/nullfs/null_vnops.c
@@ -37,11 +37,11 @@
*
* Ancestors:
* @(#)lofs_vnops.c 1.2 (Berkeley) 6/18/92
- * $Id: null_vnops.c,v 1.27 1998/04/17 22:36:54 des Exp $
+ * $Id: null_vnops.c,v 1.28 1998/06/10 06:34:56 peter Exp $
* ...and...
* @(#)null_vnodeops.c 1.20 92/07/07 UCLA Ficus project
*
- * $Id: null_vnops.c,v 1.27 1998/04/17 22:36:54 des Exp $
+ * $Id: null_vnops.c,v 1.28 1998/06/10 06:34:56 peter Exp $
*/
/*
@@ -612,7 +612,7 @@ null_strategy(ap)
savedvp = bp->b_vp;
bp->b_vp = NULLVPTOLOWERVP(bp->b_vp);
- error = VOP_STRATEGY(bp);
+ error = VOP_STRATEGY(bp->b_vp, bp);
bp->b_vp = savedvp;
diff --git a/sys/miscfs/specfs/spec_vnops.c b/sys/miscfs/specfs/spec_vnops.c
index ef39ab5067f5..a49a106e1410 100644
--- a/sys/miscfs/specfs/spec_vnops.c
+++ b/sys/miscfs/specfs/spec_vnops.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95
- * $Id: spec_vnops.c,v 1.62 1998/05/21 07:47:49 dyson Exp $
+ * $Id: spec_vnops.c,v 1.63 1998/06/07 17:11:59 dfr Exp $
*/
#include <sys/param.h>
@@ -805,7 +805,7 @@ spec_getpages(ap)
cnt.v_vnodepgsin += pcount;
/* Do the input. */
- VOP_STRATEGY(bp);
+ VOP_STRATEGY(bp->b_vp, bp);
s = splbio();
diff --git a/sys/miscfs/umapfs/umap_vnops.c b/sys/miscfs/umapfs/umap_vnops.c
index f37e4c748840..b90b351809d1 100644
--- a/sys/miscfs/umapfs/umap_vnops.c
+++ b/sys/miscfs/umapfs/umap_vnops.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)umap_vnops.c 8.6 (Berkeley) 5/22/95
- * $Id: umap_vnops.c,v 1.22 1997/10/21 21:08:17 roberto Exp $
+ * $Id: umap_vnops.c,v 1.23 1998/02/07 01:36:24 kato Exp $
*/
/*
@@ -430,6 +430,7 @@ umap_reclaim(ap)
static int
umap_strategy(ap)
struct vop_strategy_args /* {
+ struct vnode *a_vp;
struct buf *a_bp;
} */ *ap;
{
@@ -440,7 +441,7 @@ umap_strategy(ap)
savedvp = bp->b_vp;
bp->b_vp = UMAPVPTOLOWERVP(bp->b_vp);
- error = VOP_STRATEGY(ap->a_bp);
+ error = VOP_STRATEGY(bp->b_vp, ap->a_bp);
bp->b_vp = savedvp;
diff --git a/sys/miscfs/union/union_vnops.c b/sys/miscfs/union/union_vnops.c
index f1c6d787125a..2bcd1ee794f0 100644
--- a/sys/miscfs/union/union_vnops.c
+++ b/sys/miscfs/union/union_vnops.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* @(#)union_vnops.c 8.32 (Berkeley) 6/23/95
- * $Id: union_vnops.c,v 1.56 1998/03/17 08:47:50 kato Exp $
+ * $Id: union_vnops.c,v 1.57 1998/05/07 04:58:38 msmith Exp $
*/
#include <sys/param.h>
@@ -1725,6 +1725,7 @@ union_advlock(ap)
static int
union_strategy(ap)
struct vop_strategy_args /* {
+ struct vnode *a_vp;
struct buf *a_bp;
} */ *ap;
{
@@ -1743,7 +1744,7 @@ union_strategy(ap)
panic("union_strategy: writing to lowervp");
#endif
- error = VOP_STRATEGY(bp);
+ error = VOP_STRATEGY(bp->b_vp, bp);
bp->b_vp = savedvp;
return (error);