The xstats name needs to be changed correctly.
tx_size_1023_to_max_packets should be tx_size_1024_to_max_packets.

Fixes: 38552317dcef ("igb: add extended stats")
Cc: sta...@dpdk.org

Signed-off-by: Kaiwen Deng <kaiwenx.d...@intel.com>
---
 drivers/net/intel/e1000/igb_ethdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/intel/e1000/igb_ethdev.c 
b/drivers/net/intel/e1000/igb_ethdev.c
index cbd2f15f5f..40f453c8d9 100644
--- a/drivers/net/intel/e1000/igb_ethdev.c
+++ b/drivers/net/intel/e1000/igb_ethdev.c
@@ -486,7 +486,7 @@ static const struct rte_igb_xstats_name_off 
rte_igb_stats_strings[] = {
        {"tx_size_256_to_511_packets", offsetof(struct e1000_hw_stats, ptc511)},
        {"tx_size_512_to_1023_packets", offsetof(struct e1000_hw_stats,
                ptc1023)},
-       {"tx_size_1023_to_max_packets", offsetof(struct e1000_hw_stats,
+       {"tx_size_1024_to_max_packets", offsetof(struct e1000_hw_stats,
                ptc1522)},
        {"tx_multicast_packets", offsetof(struct e1000_hw_stats, mptc)},
        {"tx_broadcast_packets", offsetof(struct e1000_hw_stats, bptc)},
-- 
2.34.1

Reply via email to