X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fsfc%2Fsfc_tso.h;h=ef257519ace47a69f76be553591041e0a95c50a6;hb=dda8e0e48723fc90e6222fcc1b04b94f240ae9b2;hp=cd151782f483e139e91950ff7ba48be6949276cc;hpb=11c3712fc9bc8c179a5d3fd94ca7ed220546826f;p=dpdk.git diff --git a/drivers/net/sfc/sfc_tso.h b/drivers/net/sfc/sfc_tso.h index cd151782f4..ef257519ac 100644 --- a/drivers/net/sfc/sfc_tso.h +++ b/drivers/net/sfc/sfc_tso.h @@ -26,6 +26,18 @@ extern "C" { */ #define SFC_EF10_TSO_HDR_DESCS_NUM 1 +static inline uint16_t +sfc_tso_ip4_get_ipid(const uint8_t *pkt_hdrp, size_t ip_hdr_off) +{ + const struct rte_ipv4_hdr *ip_hdrp; + uint16_t ipid; + + ip_hdrp = (const struct rte_ipv4_hdr *)(pkt_hdrp + ip_hdr_off); + rte_memcpy(&ipid, &ip_hdrp->packet_id, sizeof(ipid)); + + return rte_be_to_cpu_16(ipid); +} + unsigned int sfc_tso_prepare_header(uint8_t *tsoh, size_t header_len, struct rte_mbuf **in_seg, size_t *in_off);