* Removes the page table page mapping the specified virtual address from the * specified pmap's collection of idle page table pages, and returns it. * Otherwise, returns NULL if there is no page table page corresponding to the * specified virtual address. */
| 3935 | * specified virtual address. |
| 3936 | */ |
| 3937 | static __inline vm_page_t |
| 3938 | pmap_remove_pt_page(pmap_t pmap, vm_offset_t va) |
| 3939 | { |
| 3940 | |
| 3941 | PMAP_LOCK_ASSERT(pmap, MA_OWNED); |
| 3942 | return (vm_radix_remove(&pmap->pm_root, pmap_pde_pindex(va))); |
| 3943 | } |
| 3944 | |
| 3945 | /* |
| 3946 | * Decrements a page table page's reference count, which is used to record the |
no test coverage detected