Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b619524 authored by Tariq Toukan's avatar Tariq Toukan Committed by David S. Miller
Browse files

net/mlx5e: Changed naming convention of tx queues in ethtool stats



Instead of the pair (channel, tc), we now use a single number that
goes over all tx queues of a TC, for all TCs.

Signed-off-by: default avatarTariq Toukan <tariqt@mellanox.com>
Signed-off-by: default avatarSaeed Mahameed <saeedm@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ce89ef36
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -211,12 +211,13 @@ static void mlx5e_get_strings(struct net_device *dev,
				sprintf(data + (idx++) * ETH_GSTRING_LEN,
					"rx%d_%s", i, rq_stats_strings[j]);

		for (i = 0; i < priv->params.num_channels; i++)
		for (tc = 0; tc < priv->params.num_tc; tc++)
			for (i = 0; i < priv->params.num_channels; i++)
				for (j = 0; j < NUM_SQ_STATS; j++)
					sprintf(data +
					      (idx++) * ETH_GSTRING_LEN,
						"tx%d_%d_%s", i, tc,
					      "tx%d_%s",
					      priv->channeltc_to_txq_map[i][tc],
					      sq_stats_strings[j]);
		break;
	}
@@ -249,8 +250,8 @@ static void mlx5e_get_ethtool_stats(struct net_device *dev,
						&priv->state) ? 0 :
				       ((u64 *)&priv->channel[i]->rq.stats)[j];

	for (i = 0; i < priv->params.num_channels; i++)
	for (tc = 0; tc < priv->params.num_tc; tc++)
		for (i = 0; i < priv->params.num_channels; i++)
			for (j = 0; j < NUM_SQ_STATS; j++)
				data[idx++] = !test_bit(MLX5E_STATE_OPENED,
							&priv->state) ? 0 :