aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1996-06-14 23:26:40 +0000
committerDavid Greenman <dg@FreeBSD.org>1996-06-14 23:26:40 +0000
commit664275648a266d5359aa0c041602dc470ecc2908 (patch)
tree1109e702c30c7aebd724a20e4fec63cedf6736b2
parent333f7d7bb65327119c3ead7ab7cb77321f7016c4 (diff)
Notes
-rw-r--r--sys/vm/vm_fault.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c
index c9a6c8cb392c..97b5f411852b 100644
--- a/sys/vm/vm_fault.c
+++ b/sys/vm/vm_fault.c
@@ -66,7 +66,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_fault.c,v 1.49 1996/06/08 06:48:32 dyson Exp $
+ * $Id: vm_fault.c,v 1.50 1996/06/10 00:25:40 dyson Exp $
*/
/*
@@ -966,10 +966,10 @@ vm_fault_copy_entry(dst_map, src_map, dst_entry, src_entry)
* Enter it in the pmap...
*/
- dst_m->flags |= PG_WRITEABLE|PG_MAPPED;
dst_m->flags &= ~PG_ZERO;
pmap_enter(dst_map->pmap, vaddr, VM_PAGE_TO_PHYS(dst_m),
prot, FALSE);
+ dst_m->flags |= PG_WRITEABLE|PG_MAPPED;
/*
* Mark it no longer busy, and put it on the active list.