| 366 | } |
| 367 | |
| 368 | void |
| 369 | vm_object_pip_wakeupn(vm_object_t object, short i) |
| 370 | { |
| 371 | |
| 372 | if (i > 0) |
| 373 | blockcount_release(&object->paging_in_progress, i); |
| 374 | } |
| 375 | |
| 376 | /* |
| 377 | * Atomically drop the object lock and wait for pip to drain. This protects |
no test coverage detected