* Set the page's dirty bits if the page is modified. */
| 5377 | * Set the page's dirty bits if the page is modified. |
| 5378 | */ |
| 5379 | void |
| 5380 | vm_page_test_dirty(vm_page_t m) |
| 5381 | { |
| 5382 | |
| 5383 | vm_page_assert_busied(m); |
| 5384 | if (m->dirty != VM_PAGE_BITS_ALL && pmap_is_modified(m)) |
| 5385 | vm_page_dirty(m); |
| 5386 | } |
| 5387 | |
| 5388 | void |
| 5389 | vm_page_valid(vm_page_t m) |
no test coverage detected