aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_map.c
diff options
context:
space:
mode:
authorJohn Dyson <dyson@FreeBSD.org>1997-08-05 23:03:24 +0000
committerJohn Dyson <dyson@FreeBSD.org>1997-08-05 23:03:24 +0000
commitba9be04c727704eaca3b9981d980d682c41dcf3f (patch)
tree5342b3954d0f479171e74cf3e824b4d382192ef6 /sys/vm/vm_map.c
parent0d65e566b9205b394757258c5ffc34d8b64e0998 (diff)
downloadsrc-ba9be04c727704eaca3b9981d980d682c41dcf3f.tar.gz
src-ba9be04c727704eaca3b9981d980d682c41dcf3f.zip
Fixed the commit botch that was causing crashes soon after system
startup. Due to the error, the initialization of the zone for pv_entries was missing. The system should be usable again.
Notes
Notes: svn path=/head/; revision=27924
Diffstat (limited to 'sys/vm/vm_map.c')
-rw-r--r--sys/vm/vm_map.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index cc4128a261e8..51d60d5ef3df 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.82 1997/08/05 22:07:27 dyson Exp $
+ * $Id: vm_map.c,v 1.83 1997/08/05 22:24:28 dyson Exp $
*/
/*
@@ -213,6 +213,7 @@ vm_init2(void) {
NULL, 0, 0, 0, 4);
zinitna(mapzone, &mapobj,
NULL, 0, 0, 0, 4);
+ pmap_init2();
}
void