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

Function is_managed

freebsd/arm/arm/pmap-v6.c:2794–2803  ·  view source on GitHub ↗

* Is given page managed? */

Source from the content-addressed store, hash-verified

2792 * Is given page managed?
2793 */
2794static __inline bool
2795is_managed(vm_paddr_t pa)
2796{
2797 vm_page_t m;
2798
2799 m = PHYS_TO_VM_PAGE(pa);
2800 if (m == NULL)
2801 return (false);
2802 return ((m->oflags & VPO_UNMANAGED) == 0);
2803}
2804
2805static __inline bool
2806pte1_is_managed(pt1_entry_t pte1)

Callers 2

pte1_is_managedFunction · 0.85
pte2_is_managedFunction · 0.85

Calls 1

PHYS_TO_VM_PAGEFunction · 0.85

Tested by

no test coverage detected