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

Function mbufq_init

freebsd/sys/mbuf.h:1485–1492  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1483};
1484
1485static inline void
1486mbufq_init(struct mbufq *mq, int maxlen)
1487{
1488
1489 STAILQ_INIT(&mq->mq_head);
1490 mq->mq_maxlen = maxlen;
1491 mq->mq_len = 0;
1492}
1493
1494static inline struct mbuf *
1495mbufq_flush(struct mbufq *mq)

Callers 11

dyn_send_keepalive_ipv4Function · 0.50
dyn_send_keepalive_ipv6Function · 0.50
nat64_do_handle_ip4Function · 0.50
tcp_pcap_tcpcb_initFunction · 0.50
in_getmultiFunction · 0.50
igi_alloc_lockedFunction · 0.50
igmp_fasttimo_vnetFunction · 0.50
mli_alloc_lockedFunction · 0.50
mld_fasttimo_vnetFunction · 0.50
in6_getmultiFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected