| 250 | } |
| 251 | |
| 252 | vm_offset_t |
| 253 | kmem_alloc_attr(vm_size_t size, int flags, vm_paddr_t low, vm_paddr_t high, |
| 254 | vm_memattr_t memattr) |
| 255 | { |
| 256 | |
| 257 | return (kmem_alloc_attr_domainset(DOMAINSET_RR(), size, flags, low, |
| 258 | high, memattr)); |
| 259 | } |
| 260 | |
| 261 | vm_offset_t |
| 262 | kmem_alloc_attr_domainset(struct domainset *ds, vm_size_t size, int flags, |
no test coverage detected