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

Function pmap_pt2_page

freebsd/arm/include/pmap_var.h:475–482  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

473}
474
475static __inline vm_page_t
476pmap_pt2_page(pmap_t pmap, vm_offset_t va)
477{
478 pt2_entry_t pte2;
479
480 pte2 = pte2_load(pmap_pt2tab_entry(pmap, va));
481 return (PHYS_TO_VM_PAGE(pte2 & PTE2_FRAME));
482}
483
484static __inline vm_page_t
485kern_pt2_page(vm_offset_t va)

Callers 4

pmap_remove_kernel_pte1Function · 0.85
pmap_remove_pte1Function · 0.85
pmap_demote_pte1Function · 0.85
pmap_remove_pte1_quickFunction · 0.85

Calls 3

pte2_loadFunction · 0.85
pmap_pt2tab_entryFunction · 0.85
PHYS_TO_VM_PAGEFunction · 0.85

Tested by

no test coverage detected