Re: [ovs-dev] [PATCH] datapath: Fix zero key tunnels.

2012-10-24 Thread Pravin Shelar
On Wed, Oct 24, 2012 at 3:44 PM, Jesse Gross wrote: > On Tue, Oct 23, 2012 at 6:42 PM, Pravin B Shelar wrote: >> Datapath tunneling check for flag OVS_FLOW_TNL_F_KEY is failing, >> causing it to drop packet. This only happens on tunnels with >> zero key as vswitchd does not generate set-tunnel ac

Re: [ovs-dev] [PATCH] datapath: Fix zero key tunnels.

2012-10-24 Thread Jesse Gross
On Tue, Oct 23, 2012 at 6:42 PM, Pravin B Shelar wrote: > Datapath tunneling check for flag OVS_FLOW_TNL_F_KEY is failing, > causing it to drop packet. This only happens on tunnels with > zero key as vswitchd does not generate set-tunnel action. Set > tunnel action sets this flags for given action

Re: [ovs-dev] [PATCH] datapath: Fix zero key tunnels.

2012-10-24 Thread Kyle Mestery (kmestery)
On Oct 23, 2012, at 8:42 PM, Pravin B Shelar wrote: > Datapath tunneling check for flag OVS_FLOW_TNL_F_KEY is failing, > causing it to drop packet. This only happens on tunnels with > zero key as vswitchd does not generate set-tunnel action. Set > tunnel action sets this flags for given action. To

[ovs-dev] [PATCH] datapath: Fix zero key tunnels.

2012-10-23 Thread Pravin B Shelar
Datapath tunneling check for flag OVS_FLOW_TNL_F_KEY is failing, causing it to drop packet. This only happens on tunnels with zero key as vswitchd does not generate set-tunnel action. Set tunnel action sets this flags for given action. To fix this issue the check is dropped. Bug #13666 Signed-off