MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_page_test_dirty

Function vm_page_test_dirty

freebsd/vm/vm_page.c:5379–5386  ·  view source on GitHub ↗

* Set the page's dirty bits if the page is modified. */

Source from the content-addressed store, hash-verified

5377 * Set the page's dirty bits if the page is modified.
5378 */
5379void
5380vm_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
5388void
5389vm_page_valid(vm_page_t m)

Callers 4

vfs_setdirty_rangeFunction · 0.85
vm_pageout_clusterFunction · 0.85
vm_pageout_launderFunction · 0.85
vm_pageout_scan_inactiveFunction · 0.85

Calls 2

vm_page_dirtyFunction · 0.85
pmap_is_modifiedFunction · 0.50

Tested by

no test coverage detected