* Destroy the given CPU private mapping and unpin the page that it mapped. */
| 248 | * Destroy the given CPU private mapping and unpin the page that it mapped. |
| 249 | */ |
| 250 | void |
| 251 | vm_imgact_unmap_page(struct sf_buf *sf) |
| 252 | { |
| 253 | vm_page_t m; |
| 254 | |
| 255 | m = sf_buf_page(sf); |
| 256 | sf_buf_free(sf); |
| 257 | sched_unpin(); |
| 258 | vm_page_unwire(m, PQ_ACTIVE); |
| 259 | } |
| 260 | |
| 261 | void |
| 262 | vm_sync_icache(vm_map_t map, vm_offset_t va, vm_offset_t sz) |
no test coverage detected