]> git.baikalelectronics.ru Git - kernel.git/commit
igb: Fix a test with HWTSTAMP_TX_ON
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Tue, 6 Feb 2018 19:47:59 +0000 (20:47 +0100)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Mon, 5 Mar 2018 17:23:37 +0000 (09:23 -0800)
commitb64155c073aa6ed56c8d33291d10d1d02cef39a6
treed2bc2ee4bec5e93ff0be563452b61223ab0b1b80
parentc61e8395ef740e75c48d84ef2764701b386e2715
igb: Fix a test with HWTSTAMP_TX_ON

'HWTSTAMP_TX_ON' should be handled as a value, not as a bit mask.
The modified code should behave the same, because HWTSTAMP_TX_ON is 1
and no other possible values of 'tx_type' would match the test.
However, this is more future-proof, should other values be allowed one day.

See 'struct hwtstamp_config' in 'include/uapi/linux/net_tstamp.h'

This fixes a warning reported by smatch:
   igb_xmit_frame_ring() warn: bit shifter 'HWTSTAMP_TX_ON' used for logical '&'

Fixes: 61ddc74779d13 ("igb: protect TX timestamping from API misuse")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/igb/igb_main.c