net/mlx5/linux: fix missed Rx packet stats
There was a typo - the device context was wrongly provided
instead of counter's one for the DevX query operation.
Fixes: e6988afdc7
("net/mlx5: fix imissed statistics")
Cc: stable@dpdk.org
Signed-off-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
This commit is contained in:
parent
31625e6288
commit
978a0303a3
@ -2697,8 +2697,8 @@ mlx5_os_read_dev_stat(struct mlx5_priv *priv, const char *ctr_name,
|
||||
if (priv->sh) {
|
||||
if (priv->q_counters != NULL &&
|
||||
strcmp(ctr_name, "out_of_buffer") == 0)
|
||||
return mlx5_devx_cmd_queue_counter_query(priv->sh->ctx,
|
||||
0, (uint32_t *)stat);
|
||||
return mlx5_devx_cmd_queue_counter_query
|
||||
(priv->q_counters, 0, (uint32_t *)stat);
|
||||
MKSTR(path, "%s/ports/%d/hw_counters/%s",
|
||||
priv->sh->ibdev_path,
|
||||
priv->dev_port,
|
||||
|
Loading…
Reference in New Issue
Block a user