Re: [ovs-dev] [PATCH] datapath: Fix typo in flow validation logic.

2013-08-09 Thread Jesse Gross
On Fri, Aug 9, 2013 at 3:50 PM, Kyle Mestery (kmestery) wrote: > On Aug 9, 2013, at 5:30 PM, Jesse Gross wrote: >> A bit shift operation is using the value '11' instead of '1' as the >> starting value. This only makes validation weaker than it should be >> so unless userspace is trying to install

Re: [ovs-dev] [PATCH] datapath: Fix typo in flow validation logic.

2013-08-09 Thread Kyle Mestery (kmestery)
On Aug 9, 2013, at 5:30 PM, Jesse Gross wrote: > A bit shift operation is using the value '11' instead of '1' as the > starting value. This only makes validation weaker than it should be > so unless userspace is trying to install an invalid flow there will > be no effect. > > Signed-off-by: Jesse

[ovs-dev] [PATCH] datapath: Fix typo in flow validation logic.

2013-08-09 Thread Jesse Gross
A bit shift operation is using the value '11' instead of '1' as the starting value. This only makes validation weaker than it should be so unless userspace is trying to install an invalid flow there will be no effect. Signed-off-by: Jesse Gross --- datapath/flow.c | 2 +- 1 file changed, 1 inser