Re: [PATCH v2] net/virtio: deduce IP length for Virtio TSO checksum

2023-03-06 Thread Maxime Coquelin
On 3/3/23 12:19, Boleslav Stankevich wrote: The length of TSO payload could not fit into 16 bits provided by the IPv4 total length and IPv6 payload length fields. Thus, deduce it from the length of the packet. Fixes: 696573046e9 ("net/virtio: support TSO") Cc: sta...@dpdk.org Signed-off-by:

Re: [PATCH v2] net/virtio: deduce IP length for Virtio TSO checksum

2023-03-06 Thread Maxime Coquelin
On 3/3/23 12:19, Boleslav Stankevich wrote: The length of TSO payload could not fit into 16 bits provided by the IPv4 total length and IPv6 payload length fields. Thus, deduce it from the length of the packet. Fixes: 696573046e9 ("net/virtio: support TSO") Cc: sta...@dpdk.org Signed-off-by:

Re: [PATCH v2] net/virtio: deduce IP length for Virtio TSO checksum

2023-03-06 Thread Maxime Coquelin
, Chenbo Subject: Re: [PATCH v2] net/virtio: deduce IP length for Virtio TSO checksum Cc Maxime and Chenbo On 3/3/23 14:19, Boleslav Stankevich wrote: The length of TSO payload could not fit into 16 bits provided by the IPv4 total length and IPv6 payload length fields. Thus, deduce it from the

RE: [PATCH v2] net/virtio: deduce IP length for Virtio TSO checksum

2023-03-05 Thread Xia, Chenbo
age- > From: Andrew Rybchenko > Sent: Friday, March 3, 2023 11:14 PM > To: Boleslav Stankevich ; dev@dpdk.org > Cc: sta...@dpdk.org; Maxime Coquelin ; Xia, > Chenbo > Subject: Re: [PATCH v2] net/virtio: deduce IP length for Virtio TSO > checksum > > Cc Maxime and Chenbo

Re: [PATCH v2] net/virtio: deduce IP length for Virtio TSO checksum

2023-03-03 Thread Andrew Rybchenko
Cc Maxime and Chenbo On 3/3/23 14:19, Boleslav Stankevich wrote: The length of TSO payload could not fit into 16 bits provided by the IPv4 total length and IPv6 payload length fields. Thus, deduce it from the length of the packet. Fixes: 696573046e9 ("net/virtio: support TSO") Cc: sta...@dpdk.o

[PATCH v2] net/virtio: deduce IP length for Virtio TSO checksum

2023-03-03 Thread Boleslav Stankevich
The length of TSO payload could not fit into 16 bits provided by the IPv4 total length and IPv6 payload length fields. Thus, deduce it from the length of the packet. Fixes: 696573046e9 ("net/virtio: support TSO") Cc: sta...@dpdk.org Signed-off-by: Boleslav Stankevich Reviewed-by: Andrew Rybchenk