From e493d28abce7acdb70490ccfa036946bfc3adbe9 Mon Sep 17 00:00:00 2001 From: John Dyson Date: Fri, 1 May 1998 02:25:29 +0000 Subject: [PATCH] Fix minor bug with new over used swap fix. --- sys/vm/vm_map.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index e7012ad5262..f908e15ca06 100644 --- a/sys/vm/vm_map.c +++ b/sys/vm/vm_map.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.c,v 1.120 1998/04/29 04:28:04 dyson Exp $ + * $Id: vm_map.c,v 1.121 1998/04/29 06:59:08 dyson Exp $ */ /* @@ -1969,6 +1969,7 @@ vm_map_split(entry) m->flags |= PG_BUSY; vm_page_protect(m, VM_PROT_NONE); vm_page_rename(m, new_object, idx); + m->dirty = VM_PAGE_BITS_ALL; PAGE_WAKEUP(m); }