]> git.baikalelectronics.ru Git - kernel.git/commit
igb: avoid transmit queue timeout in xdp path
authorSven Auhagen <sven.auhagen@voleatech.de>
Wed, 11 Nov 2020 17:04:53 +0000 (18:04 +0100)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Wed, 9 Dec 2020 23:26:58 +0000 (15:26 -0800)
commitdad15757ffae6a5950f15efb68af0a42b0ad5288
treeea09506775789abff0f62a68f57601bd93d13656
parent8e98d6518c0500fe7427881a3b4d8cbc14c3cd4b
igb: avoid transmit queue timeout in xdp path

Since we share the transmit queue with the network stack,
it is possible that we run into a transmit queue timeout.
This will reset the queue.
This happens under high load when XDP is using the
transmit queue pretty much exclusively.

netdev_start_xmit() sets the trans_start variable of the
transmit queue to jiffies which is later utilized by dev_watchdog(),
so to avoid timeout, let stack know that XDP xmit happened by
bumping the trans_start within XDP Tx routines to jiffies.

Fixes: d0049eb03c6f ("igb: add XDP support")
Acked-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
Signed-off-by: Sven Auhagen <sven.auhagen@voleatech.de>
Tested-by: Sandeep Penigalapati <sandeep.penigalapati@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/igb/igb_main.c