Re: [dpdk-dev] [PATCH v2 1/1] net: fix TSO packets checksum incorrect

2020-07-29 Thread Andrew Rybchenko
On 7/29/20 10:49 AM, Olivier Matz wrote: > On Tue, Jul 28, 2020 at 05:09:50PM +, Yuying Zhang wrote: >> The ol_flags check lacks of flag for IPv6 which causes checksum >> flag configuration error while IPv6/TCP TSO packet is sent. >> This patch fixes the issue by adding PKT_TX_TCP_SEG flag. >

Re: [dpdk-dev] [PATCH v2 1/1] net: fix TSO packets checksum incorrect

2020-07-29 Thread Ferruh Yigit
On 7/29/2020 9:54 AM, David Marchand wrote: > On Tue, Jul 28, 2020 at 7:11 PM Yuying Zhang wrote: >> >> The ol_flags check lacks of flag for IPv6 which causes checksum >> flag configuration error while IPv6/TCP TSO packet is sent. >> This patch fixes the issue by adding PKT_TX_TCP_SEG flag. >> >>

Re: [dpdk-dev] [PATCH v2 1/1] net: fix TSO packets checksum incorrect

2020-07-29 Thread David Marchand
On Tue, Jul 28, 2020 at 7:11 PM Yuying Zhang wrote: > > The ol_flags check lacks of flag for IPv6 which causes checksum > flag configuration error while IPv6/TCP TSO packet is sent. > This patch fixes the issue by adding PKT_TX_TCP_SEG flag. > > Fixes: 520059a41aa9 ("net: check fragmented headers

Re: [dpdk-dev] [PATCH v2 1/1] net: fix TSO packets checksum incorrect

2020-07-29 Thread Olivier Matz
On Tue, Jul 28, 2020 at 05:09:50PM +, Yuying Zhang wrote: > The ol_flags check lacks of flag for IPv6 which causes checksum > flag configuration error while IPv6/TCP TSO packet is sent. > This patch fixes the issue by adding PKT_TX_TCP_SEG flag. Thanks Yuying for the new version. I have anothe

Re: [dpdk-dev] [PATCH v2 1/1] net: fix TSO packets checksum incorrect

2020-07-28 Thread Xie, WeiX
] net: fix TSO packets checksum incorrect The ol_flags check lacks of flag for IPv6 which causes checksum flag configuration error while IPv6/TCP TSO packet is sent. This patch fixes the issue by adding PKT_TX_TCP_SEG flag. Fixes: 520059a41aa9 ("net: check fragmented headers in non-debug as

[dpdk-dev] [PATCH v2 1/1] net: fix TSO packets checksum incorrect

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