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

Function vm_page_lookup

freebsd/vm/vm_page.c:1693–1699  ·  view source on GitHub ↗

* vm_page_lookup: * * Returns the page associated with the object/offset * pair specified; if none is found, NULL is returned. * * The object must be locked. */

Source from the content-addressed store, hash-verified

1691 * The object must be locked.
1692 */
1693vm_page_t
1694vm_page_lookup(vm_object_t object, vm_pindex_t pindex)
1695{
1696
1697 VM_OBJECT_ASSERT_LOCKED(object);
1698 return (vm_radix_lookup(&object->rtree, pindex));
1699}
1700
1701/*
1702 * vm_page_lookup_unlocked:

Callers 15

page_busyFunction · 0.85
page_holdFunction · 0.85
pmap_object_init_ptFunction · 0.85
sgx_ioctl_createFunction · 0.85
sgx_ioctl_add_pageFunction · 0.85
pmap_object_init_ptFunction · 0.85
uiomove_object_pageFunction · 0.85
kcov_freeFunction · 0.85
domain_get_idmap_pgtblFunction · 0.85
domain_free_pgtblFunction · 0.85

Calls 1

vm_radix_lookupFunction · 0.85

Tested by

no test coverage detected