| 353 | static __inline void *uma_zalloc_pcpu(uma_zone_t zone, int flags); |
| 354 | |
| 355 | static __inline void * |
| 356 | uma_zalloc(uma_zone_t zone, int flags) |
| 357 | { |
| 358 | return uma_zalloc_arg(zone, NULL, flags); |
| 359 | } |
| 360 | |
| 361 | static __inline void * |
| 362 | uma_zalloc_pcpu(uma_zone_t zone, int flags) |
no test coverage detected