mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-25 16:13:17 +00:00
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.
This commit is contained in:
parent
0d65e566b9
commit
ba9be04c72
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27924
@ -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 */
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user