Home
last modified time | relevance | path

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

/dpdk/lib/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()
/dpdk/lib/ip_frag/
H A Drte_ipv4_fragmentation.c64 rte_ipv4_fragment_packet(struct rte_mbuf *pkt_in, in rte_ipv4_fragment_packet() argument
81 if (unlikely(pkt_in == NULL) || unlikely(pkts_out == NULL) || in rte_ipv4_fragment_packet()
87 in_hdr = rte_pktmbuf_mtod(pkt_in, struct rte_ipv4_hdr *); in rte_ipv4_fragment_packet()
92 if (unlikely(pkt_in->data_len < header_len) || in rte_ipv4_fragment_packet()
111 (uint16_t)(pkt_in->pkt_len - header_len))) in rte_ipv4_fragment_packet()
114 in_seg = pkt_in; in rte_ipv4_fragment_packet()
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_ip_frag.h98 rte_ipv6_fragment_packet(struct rte_mbuf *pkt_in,
175 int32_t rte_ipv4_fragment_packet(struct rte_mbuf *pkt_in,
/dpdk/lib/port/
H A Drte_port_frag.c28 (*frag_op)(struct rte_mbuf *pkt_in,