| 213 | } |
| 214 | |
| 215 | static void |
| 216 | pbuf_prealloc(void *arg __unused) |
| 217 | { |
| 218 | |
| 219 | uma_prealloc(pbuf_zone, nswbuf_max); |
| 220 | nswbuf_max = -1; |
| 221 | } |
| 222 | |
| 223 | SYSINIT(pbuf, SI_SUB_KTHREAD_BUF, SI_ORDER_ANY, pbuf_prealloc, NULL); |
| 224 |
nothing calls this directly
no test coverage detected