Home
last modified time | relevance | path

Searched refs:pkt_in (Results 1 – 5 of 5) sorted by relevance

/f-stack/dpdk/lib/librte_gso/
H A Dgso_common.c50 struct rte_mbuf *pkt_in; in gso_do_segment() local
56 pkt_in = pkt; in gso_do_segment()
89 rte_pktmbuf_attach(pyld_segment, pkt_in); in gso_do_segment()
95 if (pyld_len + pkt_in_data_pos > pkt_in->data_len) in gso_do_segment()
96 pyld_len = pkt_in->data_len - pkt_in_data_pos; in gso_do_segment()
99 pkt_in->data_off; in gso_do_segment()
110 if (pkt_in_data_pos == pkt_in->data_len) { in gso_do_segment()
111 pkt_in = pkt_in->next; in gso_do_segment()
113 if (pkt_in == NULL) in gso_do_segment()
/f-stack/dpdk/lib/librte_ip_frag/
H A Drte_ipv6_fragmentation.c68 rte_ipv6_fragment_packet(struct rte_mbuf *pkt_in, in rte_ipv6_fragment_packet() argument
85 if (unlikely(pkt_in == NULL) || unlikely(pkts_out == NULL) || in rte_ipv6_fragment_packet()
102 (uint16_t)(pkt_in->pkt_len - sizeof(struct rte_ipv6_hdr)))) in rte_ipv6_fragment_packet()
105 in_hdr = rte_pktmbuf_mtod(pkt_in, struct rte_ipv6_hdr *); in rte_ipv6_fragment_packet()
107 in_seg = pkt_in; in rte_ipv6_fragment_packet()
H A Drte_ipv4_fragmentation.c66 rte_ipv4_fragment_packet(struct rte_mbuf *pkt_in, in rte_ipv4_fragment_packet() argument
83 if (unlikely(pkt_in == NULL) || unlikely(pkts_out == NULL) || in rte_ipv4_fragment_packet()
96 in_hdr = rte_pktmbuf_mtod(pkt_in, struct rte_ipv4_hdr *); in rte_ipv4_fragment_packet()
105 (uint16_t)(pkt_in->pkt_len - sizeof(struct rte_ipv4_hdr)))) in rte_ipv4_fragment_packet()
108 in_seg = pkt_in; in rte_ipv4_fragment_packet()
H A Drte_ip_frag.h170 rte_ipv6_fragment_packet(struct rte_mbuf *pkt_in,
247 int32_t rte_ipv4_fragment_packet(struct rte_mbuf *pkt_in,
/f-stack/dpdk/lib/librte_port/
H A Drte_port_frag.c30 (*frag_op)(struct rte_mbuf *pkt_in,