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

Function is_cacheable_mem

freebsd/mips/mips/machdep.c:568–579  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

566}
567
568int
569is_cacheable_mem(vm_paddr_t pa)
570{
571 int i;
572
573 for (i = 0; physmem_desc[i + 1] != 0; i += 2) {
574 if (pa >= physmem_desc[i] && pa < physmem_desc[i + 1])
575 return (1);
576 }
577
578 return (0);
579}

Callers 2

pmap_pte_cache_bitsFunction · 0.85
pmap_kenterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected