Re: [ovs-dev] [PATCH 1/1] packets: Re-calculate IPv6 checksum only for last frags upon modify.

2022-06-07 Thread Salem Sol via dev
> -Original Message- > From: Ilya Maximets > Sent: Tuesday, June 7, 2022 1:14 PM > To: Salem Sol ; d...@openvswitch.org > Cc: Eli Britstein ; Michael Pattrick ; > i.maxim...@ovn.org > Subject: Re: [ovs-dev] [PATCH 1/1] packets: Re-calculate IPv6 checksum only > fo

Re: [ovs-dev] [PATCH 1/1] packets: Re-calculate IPv6 checksum only for last frags upon modify.

2022-06-07 Thread Ilya Maximets
On 6/6/22 12:12, Salem Sol via dev wrote: > In case of modifying an IPv6 packet src/dst address the checksum should be > recalculated only for the last frag. Currently it's done for all frags, > leading to incorrect reassembled packet checksum. > Fix it by adding a new flag to recalculate the

[ovs-dev] [PATCH 1/1] packets: Re-calculate IPv6 checksum only for last frags upon modify.

2022-06-06 Thread Salem Sol via dev
In case of modifying an IPv6 packet src/dst address the checksum should be recalculated only for the last frag. Currently it's done for all frags, leading to incorrect reassembled packet checksum. Fix it by adding a new flag to recalculate the checksum only for last frag. Fixes: bc7a5acdff08

Re: [ovs-dev] [PATCH 1/1] packets: Re-calculate IPv6 checksum only for last frags upon modify.

2022-06-03 Thread Mike Pattrick
On Sun, May 29, 2022 at 10:21 AM Salem Sol via dev wrote: > > In case of modifying an IPv6 packet src/dst address the checksum should be > recalculated only for the last frag. Currently it's done for all frags, > leading to incorrect reassembled packet checksum. > Fix it by adding a new flag to

[ovs-dev] [PATCH 1/1] packets: Re-calculate IPv6 checksum only for last frags upon modify.

2022-05-29 Thread Salem Sol via dev
In case of modifying an IPv6 packet src/dst address the checksum should be recalculated only for the last frag. Currently it's done for all frags, leading to incorrect reassembled packet checksum. Fix it by adding a new flag to recalculate the checksum only for last frag. Fixes: bc7a5acdff08