]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ixgbe: fix AF_XDP tx packet count
authorWilliam Tu <u9012063@gmail.com>
Thu, 4 Apr 2019 16:36:55 +0000 (09:36 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 5 Jun 2019 20:04:29 +0000 (13:04 -0700)
The total_packets count at ixgbe_clean_xdp_tx_irq is
always zero when testing with xdpsock -t -N. Set the gso_segs
to 1 to make the tx packet count correct.

Signed-off-by: William Tu <u9012063@gmail.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c

index 90aa5825f5006d159e5683ee0368ba6a9601b4fb..6af55bb3bef39841524b6833e05e28e43344ad5c 100644 (file)
@@ -590,6 +590,7 @@ static bool ixgbe_xmit_zc(struct ixgbe_ring *xdp_ring, unsigned int budget)
                tx_bi = &xdp_ring->tx_buffer_info[xdp_ring->next_to_use];
                tx_bi->bytecount = len;
                tx_bi->xdpf = NULL;
+               tx_bi->gso_segs = 1;
 
                tx_desc = IXGBE_TX_DESC(xdp_ring, xdp_ring->next_to_use);
                tx_desc->read.buffer_addr = cpu_to_le64(dma);