aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_pageout.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1997-02-05 04:29:56 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1997-02-05 04:29:56 +0000
commit860c2cf2bc6592828a3468ab8ee661042b059ae8 (patch)
treefde30676422ab07fdec2d11fde3fc5693fdbb8cf /sys/vm/vm_pageout.c
parentb61013aa0c73c687493c80193bc040d29b351fb8 (diff)
This commit was manufactured by cvs2svn to create tagupstream/2.1.6_cvsrelease/2.1.6_cvs
'RELENG_2_1_6_RELEASE'. This commit was manufactured to restore the state of the 2.1.6-RELEASE image. Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
Diffstat (limited to 'sys/vm/vm_pageout.c')
-rw-r--r--sys/vm/vm_pageout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c
index 38a817324388..6df1bf4c1ede 100644
--- a/sys/vm/vm_pageout.c
+++ b/sys/vm/vm_pageout.c
@@ -65,7 +65,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_pageout.c,v 1.51.4.11 1996/06/27 10:29:09 davidg Exp $
+ * $Id: vm_pageout.c,v 1.51.4.13 1996/11/24 00:19:47 davidg Exp $
*/
/*
@@ -242,14 +242,14 @@ vm_pageout_clean(m, sync)
*/
for (i = 0; i < pageout_count; i++) {
ms[i]->flags |= PG_BUSY;
- vm_page_protect(ms[i], VM_PROT_READ);
+ vm_page_protect(ms[i], VM_PROT_NONE);
}
object->paging_in_progress += pageout_count;
} else {
m->flags |= PG_BUSY;
- vm_page_protect(m, VM_PROT_READ);
+ vm_page_protect(m, VM_PROT_NONE);
object->paging_in_progress++;