net/ena: fix getting xstats global stats offset
There was a bug in a code, which was reading stat_offset value from the ena_stats_rx_strings array instead of ena_stats_global_strings. It wasn't causing real problems just because ena_stats_rx_strings was not smaller than ena_stats_global_strings and both arrays hold the same offsets. Fixes: 7830e905b7c9 ("net/ena: expose extended stats") Cc: stable@dpdk.org Signed-off-by: Michal Krawczyk <mk@semihalf.com> Reviewed-by: Igor Chauskin <igorch@amazon.com> Reviewed-by: Guy Tzalik <gtzalik@amazon.com>
This commit is contained in:
parent
dd649913cc
commit
493107fd83
@ -2724,7 +2724,7 @@ static int ena_xstats_get(struct rte_eth_dev *dev,
|
||||
return 0;
|
||||
|
||||
for (stat = 0; stat < ENA_STATS_ARRAY_GLOBAL; stat++, count++) {
|
||||
stat_offset = ena_stats_rx_strings[stat].stat_offset;
|
||||
stat_offset = ena_stats_global_strings[stat].stat_offset;
|
||||
stats_begin = &adapter->dev_stats;
|
||||
|
||||
xstats[count].id = count;
|
||||
|
Loading…
x
Reference in New Issue
Block a user