* vm_page_wired: * * Perform a racy check to determine whether a reference prevents the page * from being reclaimable. If the page's object is locked, and the page is * unmapped and exclusively busied by the current thread, no new wirings * may be created. */
| 976 | * may be created. |
| 977 | */ |
| 978 | static inline bool |
| 979 | vm_page_wired(vm_page_t m) |
| 980 | { |
| 981 | |
| 982 | return (VPRC_WIRE_COUNT(m->ref_count) > 0); |
| 983 | } |
| 984 | |
| 985 | static inline bool |
| 986 | vm_page_all_valid(vm_page_t m) |
no outgoing calls
no test coverage detected