Revision 19a6d156a7bd080f3a855a40a4a08ab475e34b4a authored by Colin Ian King on 05 February 2016, 16:30:39 UTC, committed by David S. Miller on 13 February 2016, 11:05:41 UTC
smatch detected a suspicious looking bitop condition:

drivers/net/ethernet/cavium/liquidio/lio_main.c:2529
  handle_timestamp() warn: suspicious bitop condition

(skb_shinfo(skb)->tx_flags | SKBTX_IN_PROGRESS is always non-zero,
so the logic is definitely not correct.  Use & to mask the correct
bit.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 14a03cf
History
File Mode Size
.gitignore -rw-r--r-- 44 bytes
Kconfig -rw-r--r-- 1.7 KB
Makefile -rw-r--r-- 3.6 KB
system_certificates.S -rw-r--r-- 535 bytes
system_keyring.c -rw-r--r-- 4.0 KB

back to top