* Move the specified page to the tail of the inactive queue, or requeue * the page if it is already in the inactive queue. */
| 4103 | * the page if it is already in the inactive queue. |
| 4104 | */ |
| 4105 | void |
| 4106 | vm_page_deactivate(vm_page_t m) |
| 4107 | { |
| 4108 | |
| 4109 | vm_page_mvqueue(m, PQ_INACTIVE, PGA_REQUEUE); |
| 4110 | } |
| 4111 | |
| 4112 | void |
| 4113 | vm_page_deactivate_noreuse(vm_page_t m) |
no test coverage detected