* 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. */
| 1691 | * The object must be locked. |
| 1692 | */ |
| 1693 | vm_page_t |
| 1694 | vm_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: |
no test coverage detected