| 383 | } |
| 384 | |
| 385 | static void |
| 386 | vm_fault_populate_check_page(vm_page_t m) |
| 387 | { |
| 388 | |
| 389 | /* |
| 390 | * Check each page to ensure that the pager is obeying the |
| 391 | * interface: the page must be installed in the object, fully |
| 392 | * valid, and exclusively busied. |
| 393 | */ |
| 394 | MPASS(m != NULL); |
| 395 | MPASS(vm_page_all_valid(m)); |
| 396 | MPASS(vm_page_xbusied(m)); |
| 397 | } |
| 398 | |
| 399 | static void |
| 400 | vm_fault_populate_cleanup(vm_object_t object, vm_pindex_t first, |
no test coverage detected