Home
last modified time | relevance | path

Searched refs:MBUFQ_FIRST (Results 1 – 9 of 9) sorted by relevance

/xnu-12377.41.6/bsd/net/classq/
H A Dclassq.c326 first->cp_mbuf = MBUFQ_FIRST(&qmbufq(q)); in _getq_all()
379 struct mbuf *n = MBUFQ_FIRST(head); in _getq_tail_mbuf()
390 (qlen(q) == 1 && m == MBUFQ_FIRST(head))); in _getq_tail_mbuf()
402 VERIFY(m == MBUFQ_FIRST(head)); in _getq_tail_mbuf()
454 m = MBUFQ_FIRST(head); in _getq_random_mbuf()
459 if ((MBUFQ_FIRST(head) = MBUFQ_NEXT(m)) == NULL) { in _getq_random_mbuf()
460 (head)->mq_last = &MBUFQ_FIRST(head); in _getq_random_mbuf()
523 m0 = MBUFQ_FIRST(head); in _removeq_mbuf()
538 mtail = &MBUFQ_FIRST(head); in _removeq_mbuf()
624 m_freem_list(MBUFQ_FIRST(&freeq)); in _flushq_flow_mbuf()
H A Dclassq.h188 (void *)MBUFQ_FIRST(&qmbufq(q)) : \
191 #define qhead(q) MBUFQ_FIRST(&qmbufq(q))
H A Dclassq_fq_codel.c661 if ((m = MBUFQ_FIRST(&fq->fq_mbufq)) != NULL) { in fq_get_next_tx_time()
/xnu-12377.41.6/bsd/sys/
H A Dmbuf.h1100 MBUFQ_FIRST(q) = NULL; \
1101 (q)->mq_last = &MBUFQ_FIRST(q); \
1105 if ((MBUFQ_NEXT(m) = MBUFQ_FIRST(q)) == NULL) \
1107 MBUFQ_FIRST(q) = (m); \
1123 if (((m) = MBUFQ_FIRST(q)) != NULL) { \
1124 if ((MBUFQ_FIRST(q) = MBUFQ_NEXT(m)) == NULL) \
1125 (q)->mq_last = &MBUFQ_FIRST(q); \
1132 if (MBUFQ_FIRST(q) == (m)) { \
1135 struct mbuf *_m = MBUFQ_FIRST(q); \
1146 while ((__m0 = MBUFQ_FIRST(q)) != NULL) { \
[all …]
/xnu-12377.41.6/bsd/net/
H A Ddlil_input.c492 m_drop_list(MBUFQ_FIRST(&freeq), ifp, DROPTAP_FLAG_DIR_IN, DROP_REASON_DLIL_BURST_LIMIT, NULL, 0); in dlil_input_async()
595 m_drop_list(MBUFQ_FIRST(&freeq), ifp, DROPTAP_FLAG_DIR_IN, DROP_REASON_DLIL_BURST_LIMIT, NULL, 0); in dlil_input_sync()
H A Dif_utun.c3600 (void) ifnet_input_extended(pcb->utun_ifp, MBUFQ_FIRST(&mbq), in utun_kpipe_sync_tx()
H A Dcontent_filter.c1152 return MBUFQ_FIRST(&cfq->q_mq); in cfil_queue_first()
/xnu-12377.41.6/bsd/netinet/
H A Dflow_divert.c2373 mbuf_ref_t next_record = MBUFQ_FIRST(&send_queue); in flow_divert_disable()
4730 next_packet = MBUFQ_FIRST(&group->send_queue); in flow_divert_kctl_rcvd()
/xnu-12377.41.6/bsd/kern/
H A Duipc_syscalls.c1853 top = MBUFQ_FIRST(&pktlist); in sendit_x()