[ovs-dev] [PATCH] dpif: Fix tunnel key set for IPv6 tunnels with SLOW_ACTION.

2022-12-07 Thread Eelco Chaudron
The dpif_execute_helper_cb() function is supposed to add the OVS_ACTION_ATTR_SET(OVS_KEY_ATTR_TUNNEL()) action to the list of actions when passing it down to the kernel. This function was only checking if the IPv4 destination address was set, not both. This patch fixes this, including a datapath t

Re: [ovs-dev] [PATCH] dpif: Fix tunnel key set for IPv6 tunnels with SLOW_ACTION.

2022-12-20 Thread Ilya Maximets
On 12/7/22 17:17, Eelco Chaudron wrote: > The dpif_execute_helper_cb() function is supposed to add the > OVS_ACTION_ATTR_SET(OVS_KEY_ATTR_TUNNEL()) action to the > list of actions when passing it down to the kernel. > > This function was only checking if the IPv4 destination > address was set, not

Re: [ovs-dev] [PATCH] dpif: Fix tunnel key set for IPv6 tunnels with SLOW_ACTION.

2022-12-22 Thread Eelco Chaudron
On 20 Dec 2022, at 13:42, Ilya Maximets wrote: > On 12/7/22 17:17, Eelco Chaudron wrote: >> The dpif_execute_helper_cb() function is supposed to add the >> OVS_ACTION_ATTR_SET(OVS_KEY_ATTR_TUNNEL()) action to the >> list of actions when passing it down to the kernel. >> >> This function was only