Re: [dpdk-dev] [PATCH v1] net: fix TSO packet checksum incorrect

2020-07-29 Thread Andrew Rybchenko
On 7/28/20 12:29 PM, Olivier Matz wrote: > Hi, > > On Tue, Jul 28, 2020 at 08:55:31AM +, Yuying Zhang wrote: >> The ol_flags check lacks of PKT_TX_IPV6 which causes checksum >> flag configuration error while IPv6/TCP TSO packet is sent. >> This patch fixes the issue using PKT_TX_OFFLOAD_MASK.

Re: [dpdk-dev] [PATCH v1] net: fix TSO packet checksum incorrect

2020-07-28 Thread Olivier Matz
Hi, On Tue, Jul 28, 2020 at 08:55:31AM +, Yuying Zhang wrote: > The ol_flags check lacks of PKT_TX_IPV6 which causes checksum > flag configuration error while IPv6/TCP TSO packet is sent. > This patch fixes the issue using PKT_TX_OFFLOAD_MASK. > > Fixes: 520059a41aa9 ("net: check fragmented h

[dpdk-dev] [PATCH v1] net: fix TSO packet checksum incorrect

2020-07-28 Thread Yuying Zhang
The ol_flags check lacks of PKT_TX_IPV6 which causes checksum flag configuration error while IPv6/TCP TSO packet is sent. This patch fixes the issue using PKT_TX_OFFLOAD_MASK. Fixes: 520059a41aa9 ("net: check fragmented headers in non-debug as well") Signed-off-by: Yuying Zhang --- lib/librte_n