Home
last modified time | relevance | path

Searched refs:m_head (Results 1 – 13 of 13) sorted by relevance

/f-stack/freebsd/mips/atheros/ar531x/
H A Dif_are.c709 m_freem(*m_head); in are_encap()
710 *m_head = NULL; in are_encap()
713 *m_head = m; in are_encap()
721 m = *m_head; in are_encap()
729 *m_head = NULL; in are_encap()
732 *m_head = m; in are_encap()
750 *m_head = m; in are_encap()
762 *m_head = NULL; in are_encap()
765 *m_head = m; in are_encap()
770 *m_head = NULL; in are_encap()
[all …]
/f-stack/freebsd/netinet/
H A Dtcp_lro.c248 m_freem(le->m_head); in tcp_lro_free()
534 le->m_head->m_pkthdr.len = le->p_len; in tcp_flush_out_le()
564 le->m_head->m_nextpkt = NULL; in tcp_flush_out_le()
645 le->m_head = m; in tcp_set_le_to_m()
664 msave = le->m_head->m_nextpkt; in tcp_push_and_replace()
665 le->m_head->m_nextpkt = NULL; in tcp_push_and_replace()
700 m = le->m_head->m_nextpkt; in tcp_lro_condense()
705 th = tcp_lro_get_th(le, le->m_head); in tcp_lro_condense()
854 tp->t_in_pkt = le->m_head; in tcp_queue_pkts()
861 le->m_head = NULL; in tcp_queue_pkts()
[all …]
H A Dtcp_lro.h46 struct mbuf *m_head; member
/f-stack/freebsd/contrib/ck/include/
H A Dck_fifo.h46 ck_spinlock_t m_head; member
83 return ck_spinlock_trylock(&fifo->m_head); in ck_fifo_spsc_dequeue_trylock()
90 ck_spinlock_lock(&fifo->m_head); in ck_fifo_spsc_dequeue_lock()
98 ck_spinlock_unlock(&fifo->m_head); in ck_fifo_spsc_dequeue_unlock()
106 ck_spinlock_init(&fifo->m_head); in ck_fifo_spsc_init()
/f-stack/freebsd/mips/atheros/
H A Dif_arge.c1575 m = *m_head; in arge_encap()
1580 m_freem(*m_head); in arge_encap()
1581 *m_head = NULL; in arge_encap()
1584 *m_head = m; in arge_encap()
1599 m_freem(*m_head); in arge_encap()
1600 *m_head = NULL; in arge_encap()
1611 txd->tx_m = *m_head; in arge_encap()
1701 struct mbuf *m_head; in arge_start_locked() local
1735 if (m_head == NULL) in arge_start_locked()
1742 if (m_head == NULL) in arge_start_locked()
[all …]
/f-stack/freebsd/net/
H A Diflib.c3362 m_freem(*m_head); in iflib_ether_pad()
3368 m_freem(*m_head); in iflib_ether_pad()
3369 *m_head = new_head; in iflib_ether_pad()
3378 m_freem(*m_head); in iflib_ether_pad()
3408 m_head = *m_headp; in iflib_encap()
3450 m_head = *m_headp; in iflib_encap()
3458 pi.ipi_vtag = M_HAS_VLANTAG(m_head) ? m_head->m_pkthdr.ether_vtag : 0; in iflib_encap()
3466 m_head = *m_headp; in iflib_encap()
3480 if (m_head == NULL) in iflib_encap()
3495 *m_headp = m_head; in iflib_encap()
[all …]
/f-stack/freebsd/kern/
H A Duipc_ktls.c82 STAILQ_HEAD(, mbuf) m_head;
401 STAILQ_INIT(&ktls_wq[i].m_head); in ktls_init()
1945 STAILQ_INSERT_TAIL(&wq->m_head, m, m_epg_stailq); in ktls_enqueue_to_free()
1975 STAILQ_INSERT_TAIL(&wq->m_head, m, m_epg_stailq); in ktls_enqueue()
2149 while (STAILQ_EMPTY(&wq->m_head) && in ktls_work_thread()
2157 STAILQ_CONCAT(&local_m_head, &wq->m_head); in ktls_work_thread()
/f-stack/freebsd/netinet6/
H A Dnd6.c2455 struct mbuf *m, *m_head; in nd6_flush_holdchain() local
2458 m_head = chain; in nd6_flush_holdchain()
2460 while (m_head) { in nd6_flush_holdchain()
2461 m = m_head; in nd6_flush_holdchain()
2462 m_head = m_head->m_nextpkt; in nd6_flush_holdchain()
/f-stack/dpdk/app/test-bbdev/
H A Dtest_bbdev_perf.c937 struct rte_mbuf *m_head = rte_pktmbuf_alloc(mbuf_pool); in init_op_data_objs() local
938 TEST_ASSERT_NOT_NULL(m_head, in init_op_data_objs()
952 bufs[i].data = m_head; in init_op_data_objs()
961 m_head->buf_addr = data; in init_op_data_objs()
962 m_head->buf_iova = rte_malloc_virt2iova(data); in init_op_data_objs()
963 m_head->data_off = 0; in init_op_data_objs()
964 m_head->data_len = seg->length; in init_op_data_objs()
966 data = rte_pktmbuf_append(m_head, seg->length); in init_op_data_objs()
1002 ret = rte_pktmbuf_chain(m_head, m_tail); in init_op_data_objs()
1019 ret = rte_pktmbuf_chain(m_head, m_tail); in init_op_data_objs()
/f-stack/dpdk/drivers/baseband/turbo_sw/
H A Dbbdev_turbo_software.c102 mbuf_append(struct rte_mbuf *m_head, struct rte_mbuf *m, uint16_t len) in mbuf_append() argument
109 m_head->pkt_len = (m_head->pkt_len + len); in mbuf_append()
/f-stack/dpdk/drivers/baseband/fpga_5gnr_fec/
H A Drte_fpga_5gnr_fec.c1126 mbuf_append(struct rte_mbuf *m_head, struct rte_mbuf *m, uint16_t len) in mbuf_append() argument
1133 m_head->pkt_len = (m_head->pkt_len + len); in mbuf_append()
/f-stack/dpdk/drivers/baseband/fpga_lte_fec/
H A Dfpga_lte_fec.c1483 mbuf_append(struct rte_mbuf *m_head, struct rte_mbuf *m, uint16_t len) in mbuf_append() argument
1490 m_head->pkt_len = (m_head->pkt_len + len); in mbuf_append()
/f-stack/dpdk/drivers/baseband/acc100/
H A Drte_acc100_pmd.c1155 mbuf_append(struct rte_mbuf *m_head, struct rte_mbuf *m, uint16_t len) in mbuf_append() argument
1162 m_head->pkt_len = (m_head->pkt_len + len); in mbuf_append()