diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-11-03 08:09:45 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-11-04 22:43:54 +0900 |
commit | 0f04d057515275099c6e4f767b95a278be4681bf (patch) | |
tree | e141186a1d345d0bdaf02a372178461c6e2bdc77 /net/sched/cls_u32.c | |
parent | 991a26af2e65e0422b2a899e373c0146f2436cae (diff) | |
download | blackbird-obmc-linux-0f04d057515275099c6e4f767b95a278be4681bf.tar.gz blackbird-obmc-linux-0f04d057515275099c6e4f767b95a278be4681bf.zip |
net: sched: cls_u32: use bitwise & rather than logical && on n->flags
Currently n->flags is being operated on by a logical && operator rather
than a bitwise & operator. This looks incorrect as these should be bit
flag operations. Fix this.
Detected by CoverityScan, CID#1460398 ("Logical vs. bitwise operator")
Fixes: 245dc5121a9b ("net: sched: cls_u32: call block callbacks for offload")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/cls_u32.c')
-rw-r--r-- | net/sched/cls_u32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/cls_u32.c b/net/sched/cls_u32.c index 86145867b424..2737b71854c9 100644 --- a/net/sched/cls_u32.c +++ b/net/sched/cls_u32.c @@ -572,7 +572,7 @@ static int u32_replace_hw_knode(struct tcf_proto *tp, struct tc_u_knode *n, n->flags |= TCA_CLS_FLAGS_IN_HW; } - if (skip_sw && !(n->flags && TCA_CLS_FLAGS_IN_HW)) + if (skip_sw && !(n->flags & TCA_CLS_FLAGS_IN_HW)) return -EINVAL; return 0; |