[dpdk-dev] [PATCH v1] i40: fix the VXLAN TSO issue

2016-07-06 Thread Wu, Jingjing
> --- a/drivers/net/i40e/i40e_rxtx.c > +++ b/drivers/net/i40e/i40e_rxtx.c > @@ -801,6 +801,12 @@ i40e_txd_enable_checksum(uint64_t ol_flags, > union i40e_tx_offload tx_offload, > uint32_t *cd_tunneling) > { > + /* Tx pkts tunnel type*/ > + if ((o

[dpdk-dev] [PATCH v1] i40: fix the VXLAN TSO issue

2016-07-06 Thread Zhe Tao
Problem: when using the TSO + VXLAM feature in i40e, the outer UDP len will sometimes be a invalid value for the multiple UDP segements which are TSOed by the i40e for the inner TCP. Fix this problem by add the tunnel type field in the i40e descriptor which is missed before. Fixes: 77b8301733c3 (