diff options
| author | John Dyson <dyson@FreeBSD.org> | 1997-08-05 22:07:27 +0000 |
|---|---|---|
| committer | John Dyson <dyson@FreeBSD.org> | 1997-08-05 22:07:27 +0000 |
| commit | b79933ebfae10dd578fbb7bf77dfe50d766ff7c8 (patch) | |
| tree | 567906fdf683825932e7c0d80febcdbcc8169bdb /sys/vm/vm_map.c | |
| parent | f4e4504f060177481bcdeb46edcbd37debd9ebad (diff) | |
Notes
Diffstat (limited to 'sys/vm/vm_map.c')
| -rw-r--r-- | sys/vm/vm_map.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index 5c7a77b56393..3ce7173ef2be 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.80 1997/08/05 00:01:56 dyson Exp $ + * $Id: vm_map.c,v 1.81 1997/08/05 01:32:52 dyson Exp $ */ /* @@ -207,7 +207,6 @@ vmspace_alloc(min, max, pageable) void vm_init2(void) { - pmap_init2(); _zinit(kmapentzone, &kmapentobj, NULL, 0, 4096, ZONE_INTERRUPT, 4); _zinit(mapentzone, &mapentobj, @@ -304,7 +303,7 @@ vm_map_entry_dispose(map, entry) vm_map_t map; vm_map_entry_t entry; { - zfreei((map->system_map || !mapentzone) ? kmapentzone : mapentzone, entry); + zfree((map->system_map || !mapentzone) ? kmapentzone : mapentzone, entry); } /* @@ -317,7 +316,7 @@ static vm_map_entry_t vm_map_entry_create(map) vm_map_t map; { - return zalloci((map->system_map || !mapentzone) ? kmapentzone : mapentzone); + return zalloc((map->system_map || !mapentzone) ? kmapentzone : mapentzone); } /* |
