From: Or Gerlitz <[email protected]> Date: Wed, 15 Feb 2017 10:52:35 +0200
> @@ -194,6 +199,9 @@ static int mall_change(struct net *net, struct sk_buff
> *in_skb,
> }
> }
>
> + if (!(tc_in_hw(new->flags)))
> + new->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
Too many parenthesis, please make this:
if (!tc_in_hw(new->flags))
new->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
Thanks.
