diff options
author | dyson <dyson@FreeBSD.org> | 1997-08-05 23:03:24 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1997-08-05 23:03:24 +0000 |
commit | e150d815cc119026d37033e4d248bca618241d26 (patch) | |
tree | 51c39f15c1039481928d7e6903acce92264fa17a /sys | |
parent | 2649bd0b26a3cee5b9f258a754ccbd0e1990d37e (diff) | |
download | FreeBSD-src-e150d815cc119026d37033e4d248bca618241d26.zip FreeBSD-src-e150d815cc119026d37033e4d248bca618241d26.tar.gz |
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.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/vm/pmap.h | 3 | ||||
-rw-r--r-- | sys/vm/vm_map.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h index f0eb1f1..2c9697a 100644 --- a/sys/vm/pmap.h +++ b/sys/vm/pmap.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: pmap.h,v 1.22 1997/08/05 01:32:50 dyson Exp $ + * $Id: pmap.h,v 1.23 1997/08/05 22:07:21 dyson Exp $ */ /* @@ -131,6 +131,7 @@ void pmap_swapout_proc __P((struct proc *p)); void pmap_swapin_proc __P((struct proc *p)); void pmap_activate __P((struct proc *p)); vm_offset_t pmap_addr_hint __P((vm_object_t obj, vm_offset_t addr, vm_size_t size)); +void pmap_init2 __P((void)); #endif /* KERNEL */ diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index cc4128a..51d60d5 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 |