MFp4: If we're mapping the vector page (this will happen if we didn't
relocate it), do not attempt to call pmap_vac_me_harder() on the page. At this point m will be NULL, and we know we won't have any cache issues with this page.
This commit is contained in:
parent
b9a98eab6a
commit
0e96d8153f
@ -3535,7 +3535,8 @@ pmap_enter(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot,
|
||||
pmap_tlb_flushD_SE(pmap, va);
|
||||
|
||||
|
||||
pmap_vac_me_harder(m, pmap, va);
|
||||
if (m)
|
||||
pmap_vac_me_harder(m, pmap, va);
|
||||
}
|
||||
vm_page_unlock_queues();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user