net/bnxt: fix PCI per function stats

Fix to use correct value offset for PCI function stats.

Fixes: 5f9374de2a ("net/bnxt: add PCI function stats to extended stats")
Cc: stable@dpdk.org

Signed-off-by: Lance Richardson <lance.richardson@broadcom.com>
Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
This commit is contained in:
Lance Richardson 2020-09-21 13:45:49 -04:00 committed by Ferruh Yigit
parent 3e5fa98176
commit 739e5982f9

View File

@ -643,7 +643,8 @@ int bnxt_dev_xstats_get_op(struct rte_eth_dev *eth_dev,
for (i = 0; i < RTE_DIM(bnxt_func_stats_strings); i++) {
xstats[count].id = count;
xstats[count].value =
rte_le_to_cpu_64(((uint64_t *)&func_qstats)[i]);
rte_le_to_cpu_64(*(uint64_t *)((char *)&func_qstats +
bnxt_func_stats_strings[i].offset));
count++;
}