| 2442 | } |
| 2443 | |
| 2444 | static __inline boolean_t |
| 2445 | pt2_is_empty(vm_page_t m, vm_offset_t va) |
| 2446 | { |
| 2447 | |
| 2448 | return (m->md.pt2_wirecount[pte1_index(va) & PT2PG_MASK] == 0); |
| 2449 | } |
| 2450 | |
| 2451 | static __inline boolean_t |
| 2452 | pt2_is_full(vm_page_t m, vm_offset_t va) |
no test coverage detected