| 1982 | } |
| 1983 | |
| 1984 | vm_page_t |
| 1985 | vm_page_alloc_domain(vm_object_t object, vm_pindex_t pindex, int domain, |
| 1986 | int req) |
| 1987 | { |
| 1988 | |
| 1989 | return (vm_page_alloc_domain_after(object, pindex, domain, req, |
| 1990 | object != NULL ? vm_radix_lookup_le(&object->rtree, pindex) : |
| 1991 | NULL)); |
| 1992 | } |
| 1993 | |
| 1994 | /* |
| 1995 | * Allocate a page in the specified object with the given page index. To |
no test coverage detected