Re: [PATCH v3 net-next 1/3] openvswitch: Add a missing break statement.

2016-12-19 Thread Jarno Rajahalme
> On Dec 13, 2016, at 9:07 PM, Pravin Shelar wrote: > > On Tue, Nov 29, 2016 at 3:30 PM, Jarno Rajahalme wrote: >> Add a break statement to prevent fall-through from >> OVS_KEY_ATTR_ETHERNET to OVS_KEY_ATTR_TUNNEL. Without the break >> actions setting ethernet addresses fail to validate with l

Re: [PATCH v3 net-next 1/3] openvswitch: Add a missing break statement.

2016-12-13 Thread Pravin Shelar
On Tue, Nov 29, 2016 at 3:30 PM, Jarno Rajahalme wrote: > Add a break statement to prevent fall-through from > OVS_KEY_ATTR_ETHERNET to OVS_KEY_ATTR_TUNNEL. Without the break > actions setting ethernet addresses fail to validate with log messages > complaining about invalid tunnel attributes. > >

[PATCH v3 net-next 1/3] openvswitch: Add a missing break statement.

2016-11-29 Thread Jarno Rajahalme
Add a break statement to prevent fall-through from OVS_KEY_ATTR_ETHERNET to OVS_KEY_ATTR_TUNNEL. Without the break actions setting ethernet addresses fail to validate with log messages complaining about invalid tunnel attributes. Fixes: 0a6410fbde ("openvswitch: netlink: support L3 packets") Sign