Module Name:    src
Committed By:   pooka
Date:           Thu Sep  9 12:18:39 UTC 2010

Modified Files:
        src/sys/rump/librump/rumpvfs: vm_vfs.c

Log Message:
Release PG_PAGEOUT pages in aiodone.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/rump/librump/rumpvfs/vm_vfs.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpvfs/vm_vfs.c
diff -u src/sys/rump/librump/rumpvfs/vm_vfs.c:1.22 src/sys/rump/librump/rumpvfs/vm_vfs.c:1.23
--- src/sys/rump/librump/rumpvfs/vm_vfs.c:1.22	Thu Sep  9 10:01:25 2010
+++ src/sys/rump/librump/rumpvfs/vm_vfs.c	Thu Sep  9 12:18:39 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: vm_vfs.c,v 1.22 2010/09/09 10:01:25 pooka Exp $	*/
+/*	$NetBSD: vm_vfs.c,v 1.23 2010/09/09 12:18:39 pooka Exp $	*/
 
 /*
  * Copyright (c) 2008 Antti Kantee.  All Rights Reserved.
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm_vfs.c,v 1.22 2010/09/09 10:01:25 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm_vfs.c,v 1.23 2010/09/09 12:18:39 pooka Exp $");
 
 #include <sys/param.h>
 
@@ -62,6 +62,7 @@
 			KASSERT((pgs[i]->flags & PG_FAKE) == 0);
 			pageout++;
 			pgs[i]->flags &= ~PG_PAGEOUT;
+			pgs[i]->flags |= PG_RELEASED;
 		}
 	}
 

Reply via email to