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

Function vm_page_deactivate

freebsd/vm/vm_page.c:4105–4110  ·  view source on GitHub ↗

* Move the specified page to the tail of the inactive queue, or requeue * the page if it is already in the inactive queue. */

Source from the content-addressed store, hash-verified

4103 * the page if it is already in the inactive queue.
4104 */
4105void
4106vm_page_deactivate(vm_page_t m)
4107{
4108
4109 vm_page_mvqueue(m, PQ_INACTIVE, PGA_REQUEUE);
4110}
4111
4112void
4113vm_page_deactivate_noreuse(vm_page_t m)

Callers 7

dmu_read_pagesFunction · 0.85
vm_page_readahead_finishFunction · 0.85
vm_page_reclaim_runFunction · 0.85
fault_page_releaseFunction · 0.85
vm_fault_dontneedFunction · 0.85

Calls 1

vm_page_mvqueueFunction · 0.85

Tested by

no test coverage detected