MCPcopy Create free account
hub / github.com/F-Stack/f-stack / pmap_invalidate_range

Function pmap_invalidate_range

freebsd/mips/mips/pmap.c:726–735  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

724}
725
726static void
727pmap_invalidate_range(pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
728{
729 struct pmap_invalidate_range_arg arg;
730
731 arg.pmap = pmap;
732 arg.sva = sva;
733 arg.eva = eva;
734 pmap_call_on_active_cpus(pmap, pmap_invalidate_range_action, &arg);
735}
736
737struct pmap_update_page_arg {
738 pmap_t pmap;

Callers 6

pmap_qremoveFunction · 0.70
_pmap_unwire_ptpFunction · 0.70
pmap_removeFunction · 0.70
pmap_protectFunction · 0.70
pmap_adviseFunction · 0.70
pmap_change_attrFunction · 0.70

Calls 1

pmap_call_on_active_cpusFunction · 0.85

Tested by

no test coverage detected