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

Function mbufq_concat

freebsd/sys/mbuf.h:1581–1588  ·  view source on GitHub ↗

* Note: this doesn't enforce the maximum list size for dst. */

Source from the content-addressed store, hash-verified

1579 * Note: this doesn't enforce the maximum list size for dst.
1580 */
1581static inline void
1582mbufq_concat(struct mbufq *mq_dst, struct mbufq *mq_src)
1583{
1584
1585 mq_dst->mq_len += mq_src->mq_len;
1586 STAILQ_CONCAT(&mq_dst->mq_head, &mq_src->mq_head);
1587 mq_src->mq_len = 0;
1588}
1589
1590#ifdef _SYS_TIMESPEC_H_
1591static inline void

Callers 1

ampdu_rx_moveupFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected