* Put the specified page on the active list (if appropriate). */
| 4092 | * Put the specified page on the active list (if appropriate). |
| 4093 | */ |
| 4094 | void |
| 4095 | vm_page_activate(vm_page_t m) |
| 4096 | { |
| 4097 | |
| 4098 | vm_page_mvqueue(m, PQ_ACTIVE, PGA_REQUEUE); |
| 4099 | } |
| 4100 | |
| 4101 | /* |
| 4102 | * Move the specified page to the tail of the inactive queue, or requeue |
no test coverage detected