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

2022-12-22 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 v2] dpif: Fix tunnel key set for IPv6 tunnels with SLOW_ACTION.

2023-01-04 Thread Ilya Maximets
On 12/22/22 14:14, 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, no

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

2023-01-04 Thread Eelco Chaudron
On 4 Jan 2023, at 14:58, Ilya Maximets wrote: > On 12/22/22 14:14, 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 onl