| 439 | } |
| 440 | |
| 441 | static void |
| 442 | dn_buf_release(void *arg, void **store, int count) |
| 443 | { |
| 444 | struct mbufq *q; |
| 445 | struct mbuf *m; |
| 446 | int i; |
| 447 | |
| 448 | q = arg; |
| 449 | |
| 450 | for (i = 0; i < count; i++) { |
| 451 | m = store[i]; |
| 452 | (void)mbufq_enqueue(q, m); |
| 453 | } |
| 454 | } |
| 455 | |
| 456 | static int |
| 457 | dn_pack_import(void *arg __unused, void **store, int count, int domain __unused, |
nothing calls this directly
no test coverage detected