From: Adrien Mazarguil Date: Mon, 23 Nov 2015 14:44:43 +0000 (+0100) Subject: mlx5: fix possible crash when clearing device statistics X-Git-Tag: spdx-start~7993 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=7efc807d48a6cacb0ab432daabdc2f20449523c3;p=dpdk.git 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 Signed-off-by: Adrien Mazarguil --- diff --git a/drivers/net/mlx5/mlx5_stats.c b/drivers/net/mlx5/mlx5_stats.c index a51e945b90..6d1a600e32 100644 --- a/drivers/net/mlx5/mlx5_stats.c +++ b/drivers/net/mlx5/mlx5_stats.c @@ -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 }; }