MCPcopy Create free account
hub / github.com/F-Stack/f-stack / dn_buf_release

Function dn_buf_release

freebsd/kern/kern_mbuf.c:441–454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

439}
440
441static void
442dn_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
456static int
457dn_pack_import(void *arg __unused, void **store, int count, int domain __unused,

Callers

nothing calls this directly

Calls 1

mbufq_enqueueFunction · 0.50

Tested by

no test coverage detected