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

Function kern_pt2_page

freebsd/arm/include/pmap_var.h:484–491  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482}
483
484static __inline vm_page_t
485kern_pt2_page(vm_offset_t va)
486{
487 pt2_entry_t pte2;
488
489 pte2 = pte2_load(kern_pt2tab_entry(va));
490 return (PHYS_TO_VM_PAGE(pte2 & PTE2_FRAME));
491}
492
493#endif /* _KERNEL */
494#endif /* !_MACHINE_PMAP_VAR_H_ */

Callers

nothing calls this directly

Calls 3

pte2_loadFunction · 0.85
kern_pt2tab_entryFunction · 0.85
PHYS_TO_VM_PAGEFunction · 0.85

Tested by

no test coverage detected