Re: [ovs-dev] [PATCH] ofproto-dpif: fix issue with non-reversible actions on a patch ports

2021-06-15 Thread Eelco Chaudron
On 14 Jun 2021, at 20:15, Ilya Maximets wrote: > On 6/14/21 4:28 PM, Eelco Chaudron wrote: >> For patch ports, the is_last_action value is not propagated and is >> always set to true. This causes non-reversible actions to modify the >> packet, and the original content is not preserved when proce

Re: [ovs-dev] [PATCH] ofproto-dpif: fix issue with non-reversible actions on a patch ports

2021-06-15 Thread Eelco Chaudron
On 14 Jun 2021, at 20:15, Ilya Maximets wrote: > On 6/14/21 4:28 PM, Eelco Chaudron wrote: >> For patch ports, the is_last_action value is not propagated and is >> always set to true. This causes non-reversible actions to modify the >> packet, and the original content is not preserved when proc

Re: [ovs-dev] [PATCH] ofproto-dpif: fix issue with non-reversible actions on a patch ports

2021-06-14 Thread Ilya Maximets
On 6/14/21 4:28 PM, Eelco Chaudron wrote: > For patch ports, the is_last_action value is not propagated and is > always set to true. This causes non-reversible actions to modify the > packet, and the original content is not preserved when processing > the remaining actions. > > This patch propagat

[ovs-dev] [PATCH] ofproto-dpif: fix issue with non-reversible actions on a patch ports

2021-06-14 Thread Eelco Chaudron
For patch ports, the is_last_action value is not propagated and is always set to true. This causes non-reversible actions to modify the packet, and the original content is not preserved when processing the remaining actions. This patch propagates the is_last_action flag for patch port related acti