* Note: this doesn't enforce the maximum list size for dst. */
| 1579 | * Note: this doesn't enforce the maximum list size for dst. |
| 1580 | */ |
| 1581 | static inline void |
| 1582 | mbufq_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_ |
| 1591 | static inline void |