| 482 | } |
| 483 | |
| 484 | static __inline vm_page_t |
| 485 | kern_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_ */ |
nothing calls this directly
no test coverage detected