diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1998-07-04 20:45:42 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1998-07-04 20:45:42 +0000 |
| commit | fd5d1124e25f9996b0bfbf17156d850d106b27b4 (patch) | |
| tree | 64544e473d50bcc2f730bd7ed50ba239b54ffed3 /sys/vm | |
| parent | 52f8e5d6723e9a1340f013b3bf36d7b512023307 (diff) | |
Notes
Diffstat (limited to 'sys/vm')
| -rw-r--r-- | sys/vm/swap_pager.c | 6 | ||||
| -rw-r--r-- | sys/vm/vm_swap.c | 4 | ||||
| -rw-r--r-- | sys/vm/vnode_pager.c | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/vm/swap_pager.c b/sys/vm/swap_pager.c index 2f0305a82e3e..41a133ea4c4b 100644 --- a/sys/vm/swap_pager.c +++ b/sys/vm/swap_pager.c @@ -39,7 +39,7 @@ * from: Utah $Hdr: swap_pager.c 1.4 91/04/30$ * * @(#)swap_pager.c 8.9 (Berkeley) 3/21/94 - * $Id: swap_pager.c,v 1.94 1998/04/29 04:27:59 dyson Exp $ + * $Id: swap_pager.c,v 1.95 1998/05/04 03:01:42 dyson Exp $ */ /* @@ -1062,7 +1062,7 @@ swap_pager_getpages(object, m, count, reqpage) /* * perform the I/O */ - VOP_STRATEGY(bp); + VOP_STRATEGY(bp->b_vp, bp); /* * wait for the sync I/O to complete @@ -1466,7 +1466,7 @@ swap_pager_putpages(object, m, count, sync, rtvals) /* * perform the I/O */ - VOP_STRATEGY(bp); + VOP_STRATEGY(bp->b_vp, bp); if (sync == FALSE) { if (swap_pager_free_pending) { swap_pager_sync(); diff --git a/sys/vm/vm_swap.c b/sys/vm/vm_swap.c index 71897974ddc8..7e9c6e289459 100644 --- a/sys/vm/vm_swap.c +++ b/sys/vm/vm_swap.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_swap.c 8.5 (Berkeley) 2/17/94 - * $Id: vm_swap.c,v 1.53 1998/02/23 08:22:44 dyson Exp $ + * $Id: vm_swap.c,v 1.54 1998/06/25 11:28:07 phk Exp $ */ #include "opt_devfs.h" @@ -149,7 +149,7 @@ swstrategy(bp) pbrelvp(bp); splx(s); bp->b_vp = sp->sw_vp; - VOP_STRATEGY(bp); + VOP_STRATEGY(bp->b_vp, bp); } /* diff --git a/sys/vm/vnode_pager.c b/sys/vm/vnode_pager.c index 7ea6c8656af6..527e82589868 100644 --- a/sys/vm/vnode_pager.c +++ b/sys/vm/vnode_pager.c @@ -38,7 +38,7 @@ * SUCH DAMAGE. * * from: @(#)vnode_pager.c 7.5 (Berkeley) 4/20/91 - * $Id: vnode_pager.c,v 1.90 1998/03/09 08:58:53 msmith Exp $ + * $Id: vnode_pager.c,v 1.91 1998/03/16 01:56:03 dyson Exp $ */ /* @@ -415,7 +415,7 @@ vnode_pager_input_smlfs(object, m) bp->b_bufsize = bsize; /* do the input */ - VOP_STRATEGY(bp); + VOP_STRATEGY(bp->b_vp, bp); /* we definitely need to be at splvm here */ @@ -729,7 +729,7 @@ vnode_pager_generic_getpages(vp, m, bytecount, reqpage) cnt.v_vnodepgsin += count; /* do the input */ - VOP_STRATEGY(bp); + VOP_STRATEGY(bp->b_vp, bp); s = splvm(); /* we definitely need to be at splvm here */ |
