Re: [ovs-dev] [PATCH v4 2/9] flow: Avoid compile errors.

2015-08-12 Thread Jarno Rajahalme
> On Aug 12, 2015, at 2:38 PM, Joe Stringer wrote: > > On 7 August 2015 at 16:57, Jarno Rajahalme > wrote: >> GCC (4.7) sees too wide shifts when there are none, refactor to >> circumvent the false error. >> >> Signed-off-by: Jarno Rajahalme >> --- >> lib/flow.c

Re: [ovs-dev] [PATCH v4 2/9] flow: Avoid compile errors.

2015-08-12 Thread Joe Stringer
On 7 August 2015 at 16:57, Jarno Rajahalme wrote: > GCC (4.7) sees too wide shifts when there are none, refactor to > circumvent the false error. > > Signed-off-by: Jarno Rajahalme > --- > lib/flow.c | 35 ++- > 1 file changed, 22 insertions(+), 13 deletions(-) >

[ovs-dev] [PATCH v4 2/9] flow: Avoid compile errors.

2015-08-07 Thread Jarno Rajahalme
GCC (4.7) sees too wide shifts when there are none, refactor to circumvent the false error. Signed-off-by: Jarno Rajahalme --- lib/flow.c | 35 ++- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/lib/flow.c b/lib/flow.c index af51aac..61d9bdf 10064