aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
diff options
context:
space:
mode:
authorJohn Dyson <dyson@FreeBSD.org>1997-04-06 03:04:31 +0000
committerJohn Dyson <dyson@FreeBSD.org>1997-04-06 03:04:31 +0000
commit7d78abc9d9d9ffbf8e8177267bd87cbb07867bc9 (patch)
tree89567a234174fd9511d98091ab3ba036d537e7d7 /sys/vm
parent15cb98465f90a48cda15387c84c348ce58293815 (diff)
Notes
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_map.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index 95b2817ee3ad..18753d3e0d97 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.72 1997/02/22 09:48:23 peter Exp $
+ * $Id: vm_map.c,v 1.73 1997/04/06 02:29:43 dyson Exp $
*/
/*
@@ -1178,10 +1178,12 @@ vm_map_protect(map, start, end, new_prot, set_max)
#undef max
#undef MASK
}
+
+ vm_map_simplify_entry(map, current);
+
current = current->next;
}
- vm_map_simplify_entry(map, entry);
vm_map_unlock(map);
return (KERN_SUCCESS);
}