mlx5: fix possible crash when clearing device statistics
A typo causes TX stats indices to be retrieved from RX queues. Fixes: 87011737b715 ("mlx5: add software counters") Reported-by: Nicolas Harnois <nicolas.harnois@6wind.com> Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
This commit is contained in:
parent
0f9db82d9f
commit
7efc807d48
@ -133,7 +133,7 @@ mlx5_stats_reset(struct rte_eth_dev *dev)
|
||||
for (i = 0; (i != priv->txqs_n); ++i) {
|
||||
if ((*priv->txqs)[i] == NULL)
|
||||
continue;
|
||||
idx = (*priv->rxqs)[i]->stats.idx;
|
||||
idx = (*priv->txqs)[i]->stats.idx;
|
||||
(*priv->txqs)[i]->stats =
|
||||
(struct mlx5_txq_stats){ .idx = idx };
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user