Harald Welte wrote: > Hi Dave, please apply! What about using a brace more:
>diff --git a/include/linux/netfilter.h b/include/linux/netfilter.h >--- a/include/linux/netfilter.h >+++ b/include/linux/netfilter.h >@@ -29,7 +29,7 @@ > #define NF_VERDICT_QMASK 0xffff0000 > #define NF_VERDICT_QBITS 16 > >-#define NF_QUEUE_NR(x) ((x << NF_VERDICT_QBITS) & NF_VERDICT_QMASK || >NF_QUEUE) >+#define NF_QUEUE_NR(x) ((x << NF_VERDICT_QBITS) & NF_VERDICT_QMASK | NF_QUEUE) #define NF_QUEUE_NR(x) ((x << NF_VERDICT_QBITS) & (NF_VERDICT_QMASK | NF_QUEUE)) I know we are cool and know operator precedence even after 10 beer, but some people consider it difficult to understand without :-) Regards Ingo Oeser - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
