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

Function pmap_kenter

freebsd/mips/mips/pmap.c:839–847  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

837}
838
839void
840pmap_kenter(vm_offset_t va, vm_paddr_t pa)
841{
842
843 KASSERT(is_cacheable_mem(pa),
844 ("pmap_kenter: memory at 0x%lx is not cacheable", (u_long)pa));
845
846 pmap_kenter_attr(va, pa, VM_MEMATTR_DEFAULT);
847}
848
849void
850pmap_kenter_device(vm_offset_t va, vm_size_t size, vm_paddr_t pa)

Callers 4

pmap_mapFunction · 0.70
pmap_qenterFunction · 0.70
pmap_mapdev_attrFunction · 0.50
map_ucodeFunction · 0.50

Calls 2

is_cacheable_memFunction · 0.85
pmap_kenter_attrFunction · 0.70

Tested by

no test coverage detected