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

Function vm_fault_populate_check_page

freebsd/vm/vm_fault.c:385–397  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

383}
384
385static void
386vm_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
399static void
400vm_fault_populate_cleanup(vm_object_t object, vm_pindex_t first,

Callers 2

vm_fault_populateFunction · 0.85

Calls 1

vm_page_all_validFunction · 0.85

Tested by

no test coverage detected