]> git.baikalelectronics.ru Git - kernel.git/commit
net: sched: cls_u32: use bitwise & rather than logical && on n->flags
authorColin Ian King <colin.king@canonical.com>
Fri, 3 Nov 2017 08:09:45 +0000 (08:09 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sat, 4 Nov 2017 13:43:54 +0000 (22:43 +0900)
commitf7b4246e5dd897f3af7592ae30bb445b7ab87983
treee141186a1d345d0bdaf02a372178461c6e2bdc77
parent4513d4d4179c6a446a6f13bcd3ba1cba5b693eec
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: 126e7b8e0421 ("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>
net/sched/cls_u32.c