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

Function pt2map_pt2pg

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

* Get virtual address of PT2s page (mapped in PT2MAP) * which holds PT2 which holds entry which maps given virtual address. */

Source from the content-addressed store, hash-verified

651 * which holds PT2 which holds entry which maps given virtual address.
652 */
653static __inline vm_offset_t
654pt2map_pt2pg(vm_offset_t va)
655{
656
657 va &= ~(NPT2_IN_PG * PTE1_SIZE - 1);
658 return ((vm_offset_t)pt2map_entry(va));
659}
660
661/*****************************************************************************
662 *

Callers 4

pmap_preboot_pt2pg_setupFunction · 0.85
pmap_unwire_pt2pgFunction · 0.85
pmap_remove_kernel_pte1Function · 0.85
pmap_demote_pte1Function · 0.85

Calls 1

pt2map_entryFunction · 0.85

Tested by

no test coverage detected