[PATCH net-next 18/21] virtio-net: rename xdp_tx{,__drops} SQ stats to xdp_xmit{,__drops}

From: Alexander Lobakin
Date: Tue Aug 03 2021 - 12:39:15 EST


These two are present to track the number of frames processed and
dropped by .ndo_xdp_xmit() callback, rename them accordingly to
avoid confusion with xdp_tx RQ field and XDP_TX case in general.

Signed-off-by: Alexander Lobakin <alexandr.lobakin@xxxxxxxxx>
Reviewed-by: Jesse Brandeburg <jesse.brandeburg@xxxxxxxxx>
---
drivers/net/virtio_net.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 74482a52f076..8cbb4651ed75 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -77,8 +77,8 @@ struct virtnet_sq_stats {
struct u64_stats_sync syncp;
u64 packets;
u64 bytes;
- u64 xdp_tx;
- u64 xdp_tx_drops;
+ u64 xdp_xmit;
+ u64 xdp_xmit_drops;
u64 kicks;
};

@@ -100,8 +100,8 @@ struct virtnet_rq_stats {
static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
{ "packets", VIRTNET_SQ_STAT(packets) },
{ "bytes", VIRTNET_SQ_STAT(bytes) },
- { "xdp_tx", VIRTNET_SQ_STAT(xdp_tx) },
- { "xdp_tx_drops", VIRTNET_SQ_STAT(xdp_tx_drops) },
+ { "xdp_xmit", VIRTNET_SQ_STAT(xdp_xmit) },
+ { "xdp_xmit_drops", VIRTNET_SQ_STAT(xdp_xmit_drops) },
{ "kicks", VIRTNET_SQ_STAT(kicks) },
};

@@ -619,8 +619,8 @@ static int virtnet_xdp_xmit(struct net_device *dev,
u64_stats_update_begin(&sq->stats.syncp);
sq->stats.bytes += bytes;
sq->stats.packets += packets;
- sq->stats.xdp_tx += n;
- sq->stats.xdp_tx_drops += n - nxmit;
+ sq->stats.xdp_xmit += n;
+ sq->stats.xdp_xmit_drops += n - nxmit;
sq->stats.kicks += kicks;
u64_stats_update_end(&sq->stats.syncp);

--
2.31.1