summaryrefslogtreecommitdiffstats
path: root/sys/fs/procfs/procfs_mem.c
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1998-10-28 13:37:02 +0000
committerdg <dg@FreeBSD.org>1998-10-28 13:37:02 +0000
commit20b2c33d9ae555690e09419a1d176600738a144a (patch)
tree74dc0a163081dc84a8bec8ce775734c78d792fba /sys/fs/procfs/procfs_mem.c
parentf09370e8b5c92f2d102862a5ba0edda272351bfd (diff)
downloadFreeBSD-src-20b2c33d9ae555690e09419a1d176600738a144a.zip
FreeBSD-src-20b2c33d9ae555690e09419a1d176600738a144a.tar.gz
Added a second argument, "activate" to the vm_page_unwire() call so that
the caller can select either inactive or active queue to put the page on.
Diffstat (limited to 'sys/fs/procfs/procfs_mem.c')
-rw-r--r--sys/fs/procfs/procfs_mem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/procfs/procfs_mem.c b/sys/fs/procfs/procfs_mem.c
index c1012f1..22d8f74 100644
--- a/sys/fs/procfs/procfs_mem.c
+++ b/sys/fs/procfs/procfs_mem.c
@@ -37,7 +37,7 @@
*
* @(#)procfs_mem.c 8.5 (Berkeley) 6/15/94
*
- * $Id: procfs_mem.c,v 1.33 1998/06/07 17:11:57 dfr Exp $
+ * $Id: procfs_mem.c,v 1.34 1998/07/15 02:32:19 bde Exp $
*/
/*
@@ -253,7 +253,7 @@ procfs_rwmem(curp, p, uio)
/*
* release the page and the object
*/
- vm_page_unwire(m);
+ vm_page_unwire(m, 1);
vm_object_deallocate(object);
object = NULL;
OpenPOWER on IntegriCloud