From 20b2c33d9ae555690e09419a1d176600738a144a Mon Sep 17 00:00:00 2001 From: dg Date: Wed, 28 Oct 1998 13:37:02 +0000 Subject: 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. --- sys/fs/procfs/procfs_mem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/fs/procfs/procfs_mem.c') 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; -- cgit v1.1