]> git.baikalelectronics.ru Git - kernel.git/commit
net: sched: cls_bpf: use bitwise & rather than logical && on gen_flags
authorColin Ian King <colin.king@canonical.com>
Thu, 2 Nov 2017 20:04:12 +0000 (20:04 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 3 Nov 2017 06:52:38 +0000 (15:52 +0900)
commit36966f8cf9091b514236f0ba788a60a0f89d744e
treeaa87578f13e89d247e75d885d9ee47f1e7688848
parent4359319212e88813d3781edf1b2863c2b96ceff8
net: sched: cls_bpf: use bitwise & rather than logical && on gen_flags

Currently gen_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#1460305 ("Logical vs. bitwise operator")

Fixes: 4d2e5dfc9b8a ("net: sched: cls_bpf: call block callbacks for offload)
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/cls_bpf.c