1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-25 16:13:17 +00:00

Fix minor bug with new over used swap fix.

This commit is contained in:
John Dyson 1998-05-01 02:25:29 +00:00
parent e79dc52bbf
commit e493d28abc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35571

View File

@ -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);
}