Home
last modified time | relevance | path

Searched refs:m_tail (Results 1 – 11 of 11) sorted by relevance

/xnu-12377.61.12/bsd/skywalk/nexus/
H A Dnexus_mbq.h163 __nx_mbq_enq_multi(struct nx_mbq *q, struct mbuf *m_head, struct mbuf *m_tail, in __nx_mbq_enq_multi() argument
169 CLASSQ_PKT_INIT_MBUF(&tail, m_tail); in __nx_mbq_enq_multi()
176 struct mbuf *m_tail, uint32_t cnt, uint32_t size) in nx_mbq_safe_enq_multi() argument
179 __nx_mbq_enq_multi(q, m_head, m_tail, cnt, size); in nx_mbq_safe_enq_multi()
185 nx_mbq_enq_multi(struct nx_mbq *q, struct mbuf *m_head, struct mbuf *m_tail, in nx_mbq_enq_multi() argument
188 __nx_mbq_enq_multi(q, m_head, m_tail, cnt, size); in nx_mbq_enq_multi()
/xnu-12377.61.12/bsd/skywalk/nexus/netif/
H A Dnx_netif_filter_compat.c125 struct mbuf *__single m_tail = NULL; in nx_netif_filter_tx_processed_mbuf_enqueue() local
139 nx_netif_mbuf_chain_info(m_chain, &m_tail, &cnt, &bytes); in nx_netif_filter_tx_processed_mbuf_enqueue()
150 nx_mbq_enq_multi(q, m_chain, m_tail, cnt, bytes); in nx_netif_filter_tx_processed_mbuf_enqueue()
213 struct mbuf *__single m_tail = NULL; in fix_dequeue_mbuf_return_args() local
216 nx_netif_mbuf_chain_info(m_chain, &m_tail, &c, &l); in fix_dequeue_mbuf_return_args()
221 CLASSQ_PKT_INIT_MBUF(tail, m_tail); in fix_dequeue_mbuf_return_args()
H A Dnx_netif_poll.c305 struct mbuf *__single m_head = NULL, *__single m_tail = NULL; in netif_rxpoll_poll_driver() local
310 ((*ifp->if_input_poll)(ifp, 0, m_lim, &m_head, &m_tail, &m_cnt, in netif_rxpoll_poll_driver()
312 VERIFY((m_cnt > 0) || ((m_head == NULL) && (m_tail == NULL))); in netif_rxpoll_poll_driver()
321 (void) ifnet_input_poll(ifp, m_head, m_tail, in netif_rxpoll_poll_driver()
H A Dnx_netif_util.c686 nx_netif_mbuf_chain_info(struct mbuf *m_head, struct mbuf **m_tail, in nx_netif_mbuf_chain_info() argument
698 if (m_tail != NULL) { in nx_netif_mbuf_chain_info()
699 *m_tail = tail; in nx_netif_mbuf_chain_info()
H A Dnx_netif_compat.c65 struct mbuf *m_tail, const struct ifnet_stat_increment_param *s,
1050 struct mbuf *m_tail, const struct ifnet_stat_increment_param *s, in nx_netif_compat_receive() argument
1067 ASSERT(m_tail == NULL); in nx_netif_compat_receive()
1163 nx_mbq_enq_multi(q, m_head, m_tail, s->packets_in, s->bytes_in); in nx_netif_compat_receive()
/xnu-12377.61.12/bsd/net/
H A Dif_loop.c286 struct mbuf *m, *m_tail = NULL; in lo_output() local
319 m_tail = m; in lo_output()
329 return ifnet_input_extended(ifp, m_list, m_tail, &s); in lo_output()
399 mbuf_ref_t m = NULL, m_tail = NULL; in lo_start() local
404 &m_tail, &cnt, &len) != 0) { in lo_start()
410 &m_tail, &cnt, &len) != 0) { in lo_start()
424 (void) ifnet_input_extended(ifp, m, m_tail, &s); in lo_start()
H A Ddlil_input.c59 …hreading_info *inp, struct ifnet *ifp, struct mbuf *m_head, struct mbuf *m_tail, const struct ifne…
60 …hreading_info *inp, struct ifnet *ifp, struct mbuf *m_head, struct mbuf *m_tail, const struct ifne…
281 struct mbuf *m_tail, const struct ifnet_stat_increment_param *s, in dlil_input_handler() argument
292 return dlil_input_sync(inp, ifp, m_head, m_tail, s, poll, tp); in dlil_input_handler()
296 return inp->dlth_strategy(inp, ifp, m_head, m_tail, s, poll, tp); in dlil_input_handler()
357 struct ifnet *ifp, struct mbuf *m_head, struct mbuf *m_tail, in dlil_input_async() argument
400 VERIFY(m_head != NULL || (m_tail == NULL && m_cnt == 0)); in dlil_input_async()
413 CLASSQ_PKT_INIT_MBUF(&tail, m_tail); in dlil_input_async()
504 struct ifnet *ifp, struct mbuf *m_head, struct mbuf *m_tail, in dlil_input_sync() argument
525 CLASSQ_PKT_INIT_MBUF(&tail, m_tail); in dlil_input_sync()
H A Ddlil.c187 struct mbuf *m_tail, const struct ifnet_stat_increment_param *s,
2059 struct mbuf *m_tail, const struct ifnet_stat_increment_param *s) in ifnet_input_extended() argument
2061 return ifnet_input_common(ifp, m_head, m_tail, s, TRUE, FALSE); in ifnet_input_extended()
2066 struct mbuf *m_tail, const struct ifnet_stat_increment_param *s) in ifnet_input_poll() argument
2068 return ifnet_input_common(ifp, m_head, m_tail, s, in ifnet_input_poll()
2073 ifnet_input_common(struct ifnet *ifp, struct mbuf *m_head, struct mbuf *m_tail, in ifnet_input_common() argument
2089 VERIFY(m_head != NULL || (s == NULL && m_tail == NULL && !ext && poll)); in ifnet_input_common()
2090 VERIFY(m_tail == NULL || ext); in ifnet_input_common()
2108 if (m_tail == NULL) { in ifnet_input_common()
2124 m_tail = last; in ifnet_input_common()
[all …]
H A Dif_var_private.h695 mbuf_t m_tail, const struct ifnet_stat_increment_param *s,
/xnu-12377.61.12/bsd/net/classq/
H A Dclassq.c160 struct mbuf *m_tail = pkt_tail->cp_mbuf; in _addq_multi() local
161 MBUFQ_ENQUEUE_MULTI(&qmbufq(q), m_head, m_tail); in _addq_multi()
/xnu-12377.61.12/bsd/skywalk/nexus/flowswitch/
H A Dfsw_dp.c1550 struct mbuf **m_head, struct mbuf **m_tail, uint32_t *cnt, uint32_t *bytes) in convert_compat_pktq_to_mbufs() argument
1570 *m_tail = tail; in convert_compat_pktq_to_mbufs()
1615 struct mbuf *__single m_head = NULL, *__single m_tail = NULL; in fsw_host_rx_enqueue_mbq() local
1626 convert_compat_pktq_to_mbufs(fsw, pktq, &m_head, &m_tail, &cnt, in fsw_host_rx_enqueue_mbq()
1629 convert_native_pktq_to_mbufs(fsw, pktq, &m_head, &m_tail, &cnt, in fsw_host_rx_enqueue_mbq()
1637 mbufq_enqueue(host_mq, m_head, m_tail, cnt, bytes); in fsw_host_rx_enqueue_mbq()
3013 struct mbuf *__single m_head = NULL, *__single m_tail = NULL; in classq_enqueue_flow_chain() local
3016 convert_pkt_to_mbuf_list(pkt_head, &m_head, &m_tail, &c, &b); in classq_enqueue_flow_chain()
3017 ASSERT(m_head != NULL && m_tail != NULL); in classq_enqueue_flow_chain()
3023 err = ifnet_enqueue_mbuf_chain(ifp, m_head, m_tail, cnt, in classq_enqueue_flow_chain()
[all …]