Add a call to vm_set_page_size() in pmap_bootstrap().

This commit is contained in:
mark 1998-03-21 21:42:02 +00:00
parent 9c160cc541
commit 46f5fd743a
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.18 1998/01/21 22:34:39 mark Exp $ */
/* $NetBSD: pmap.c,v 1.19 1998/03/21 21:42:02 mark Exp $ */
/*
* Copyright (c) 1994-1997 Mark Brinicombe.
@ -568,6 +568,11 @@ pmap_bootstrap(kernel_l1pt, kernel_ptpt)
simple_lock_init(&kernel_pmap->pm_lock);
kernel_pmap->pm_count = 1;
/*
* Initialize PAGE_SIZE-dependent variables.
*/
vm_set_page_size();
virtual_start = VM_KERNEL_VIRTUAL_MIN;
virtual_end = VM_KERNEL_VIRTUAL_MAX;