mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Unbreak build by adding the missing parameter to pmap_enter().
This commit is contained in:
parent
eaf56834f1
commit
10457dbaf2
1 changed files with 2 additions and 1 deletions
|
|
@ -3828,7 +3828,8 @@ pmap_pinit(pmap_t pmap)
|
|||
bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
|
||||
pmap->pm_stats.resident_count = 1;
|
||||
if (vector_page < KERNBASE) {
|
||||
pmap_enter(pmap, vector_page, PHYS_TO_VM_PAGE(systempage.pv_pa),
|
||||
pmap_enter(pmap, vector_page,
|
||||
VM_PROT_READ, PHYS_TO_VM_PAGE(systempage.pv_pa),
|
||||
VM_PROT_READ, 1);
|
||||
}
|
||||
return (1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue