| 145 | } |
| 146 | |
| 147 | static vm_object_t |
| 148 | phys_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot, |
| 149 | vm_ooffset_t foff, struct ucred *ucred) |
| 150 | { |
| 151 | return (phys_pager_allocate(handle, &default_phys_pg_ops, NULL, |
| 152 | size, prot, foff, ucred)); |
| 153 | } |
| 154 | |
| 155 | static void |
| 156 | phys_pager_dealloc(vm_object_t object) |
nothing calls this directly
no test coverage detected