Fix driver logic that are combining XDP_TX flush and XDP_REDIRECT map flushing. These are two different XDP xmit modes, and it is clearly wrong to invoke both types of flush operations when only one of the XDP xmit modes is used.
--- Unsure what git tree to send this against. Thus, I'll leave it up-to the patchwork assigner ;-) Jesper Dangaard Brouer (3): ixgbe: split XDP_TX tail and XDP_REDIRECT map flushing i40e: split XDP_TX tail and XDP_REDIRECT map flushing virtio_net: split XDP_TX kick and XDP_REDIRECT map flushing drivers/net/ethernet/intel/i40e/i40e_txrx.c | 24 +++++++++++++------- drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 24 ++++++++++++-------- drivers/net/virtio_net.c | 30 ++++++++++++++++--------- 3 files changed, 48 insertions(+), 30 deletions(-) --