mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
net: cavium: liquidio: fix check for in progress flag
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>
This commit is contained in:
parent
14a03cf80e
commit
19a6d156a7
@ -2524,7 +2524,7 @@ static void handle_timestamp(struct octeon_device *oct,
|
||||
|
||||
octeon_swap_8B_data(&resp->timestamp, 1);
|
||||
|
||||
if (unlikely((skb_shinfo(skb)->tx_flags | SKBTX_IN_PROGRESS) != 0)) {
|
||||
if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
|
||||
struct skb_shared_hwtstamps ts;
|
||||
u64 ns = resp->timestamp;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user