Re: [ovs-dev] [PATCH] meta-flow: Fix wrong parentheses.

2015-02-13 Thread Ben Pfaff
On Thu, Feb 12, 2015 at 09:47:32PM +0800, Kmindg wrote: > Bitwise not operator has higher precedence than Bitwise right shift > operator, so the MFF_IP_DSCP_SHIFTED case always returns true currently. > > Signed-off-by: Kmindg Thanks for the report. I don't see the problem yet. Can you help? H

[ovs-dev] [PATCH] meta-flow: Fix wrong parentheses.

2015-02-12 Thread Kmindg
Bitwise not operator has higher precedence than Bitwise right shift operator, so the MFF_IP_DSCP_SHIFTED case always returns true currently. Signed-off-by: Kmindg --- lib/meta-flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/meta-flow.c b/lib/meta-flow.c index 9ce4c