* pmap_is_referenced: * * Return whether or not the specified physical page was referenced * in any physical maps. */
| 3194 | * in any physical maps. |
| 3195 | */ |
| 3196 | boolean_t |
| 3197 | pmap_is_referenced(vm_page_t m) |
| 3198 | { |
| 3199 | |
| 3200 | KASSERT((m->oflags & VPO_UNMANAGED) == 0, |
| 3201 | ("pmap_is_referenced: page %p is not managed", m)); |
| 3202 | return ((m->md.pv_flags & PV_TABLE_REF) != 0); |
| 3203 | } |
| 3204 | |
| 3205 | /* |
| 3206 | * Miscellaneous support routines follow |
no outgoing calls
no test coverage detected