* vm_page_free_zero: * * Free a page to the zerod-pages queue */
| 1338 | * Free a page to the zerod-pages queue |
| 1339 | */ |
| 1340 | void |
| 1341 | vm_page_free_zero(vm_page_t m) |
| 1342 | { |
| 1343 | |
| 1344 | m->flags |= PG_ZERO; |
| 1345 | vm_page_free_toq(m); |
| 1346 | } |
| 1347 | |
| 1348 | /* |
| 1349 | * Unbusy and handle the page queueing for a page from a getpages request that |
no test coverage detected