MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_page_wired

Function vm_page_wired

freebsd/vm/vm_page.h:978–983  ·  view source on GitHub ↗

* 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. */

Source from the content-addressed store, hash-verified

976 * may be created.
977 */
978static inline bool
979vm_page_wired(vm_page_t m)
980{
981
982 return (VPRC_WIRE_COUNT(m->ref_count) > 0);
983}
984
985static inline bool
986vm_page_all_valid(vm_page_t m)

Callers 15

mappedread_sfFunction · 0.85
sendfile_iodoneFunction · 0.85
v2sizepFunction · 0.85
v2sizevFunction · 0.85
vm_page_busy_acquireFunction · 0.85
vm_page_relookupFunction · 0.85
vm_page_scan_contigFunction · 0.85
vm_page_reclaim_runFunction · 0.85
vm_page_mvqueueFunction · 0.85
vm_page_unswappableFunction · 0.85
vm_page_release_lockedFunction · 0.85
vm_page_acquire_unlockedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected