summaryrefslogtreecommitdiffstats
path: root/sys/vm/vnode_pager.c
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1994-08-06 10:25:50 +0000
committerdg <dg@FreeBSD.org>1994-08-06 10:25:50 +0000
commitd54669e82cbbf0225e315a360ecfe53c6a92da0a (patch)
tree0a14e82d5761e46f235595cb55c93c17b687409b /sys/vm/vnode_pager.c
parente1ff3868d97d578b11ec7bdc8bf192e4c2037cc8 (diff)
downloadFreeBSD-src-d54669e82cbbf0225e315a360ecfe53c6a92da0a.zip
FreeBSD-src-d54669e82cbbf0225e315a360ecfe53c6a92da0a.tar.gz
Fixed various prototype problems with the pmap functions and the subsequent
problems that fixing them caused.
Diffstat (limited to 'sys/vm/vnode_pager.c')
-rw-r--r--sys/vm/vnode_pager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vnode_pager.c b/sys/vm/vnode_pager.c
index 3294e6e..aad8ebd 100644
--- a/sys/vm/vnode_pager.c
+++ b/sys/vm/vnode_pager.c
@@ -37,7 +37,7 @@
* SUCH DAMAGE.
*
* from: @(#)vnode_pager.c 7.5 (Berkeley) 4/20/91
- * $Id: vnode_pager.c,v 1.3 1994/08/04 03:06:48 davidg Exp $
+ * $Id: vnode_pager.c,v 1.4 1994/08/06 09:15:42 davidg Exp $
*/
/*
@@ -1043,7 +1043,7 @@ vnode_pager_input(vnp, m, count, reqpage)
for(i=0;i<counta;i++) {
vm_page_deactivate(m[count+i]);
}
- pmap_qenter(bpa->b_data, &m[count], counta);
+ pmap_qenter((vm_offset_t)bpa->b_data, &m[count], counta);
++m[count]->object->paging_in_progress;
VHOLD(vp);
bpa->b_flags = B_BUSY | B_READ | B_CALL | B_ASYNC;
OpenPOWER on IntegriCloud