From: Tariq Toukan <ttoukan.linux@gmail.com>
To: Breno Leitao <leitao@debian.org>,
Tariq Toukan <tariqt@nvidia.com>,
Andrew Lunn <andrew+netdev@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Saeed Mahameed <saeedm@nvidia.com>,
Mark Bloch <mbloch@nvidia.com>, Leon Romanovsky <leon@kernel.org>
Cc: netdev@vger.kernel.org, linux-rdma@vger.kernel.org,
linux-kernel@vger.kernel.org, kernel-team@meta.com
Subject: Re: [PATCH 2/2] mlx5: extract GRXRINGS from .get_rxnfc
Date: Mon, 17 Nov 2025 15:41:09 +0200 [thread overview]
Message-ID: <e9d75cda-b017-408f-9308-3e8631d62192@gmail.com> (raw)
In-Reply-To: <20251113-mlx_grxrings-v1-2-0017f2af7dd0@debian.org>
On 13/11/2025 18:46, Breno Leitao wrote:
> Commit 84eaf4359c36 ("net: ethtool: add get_rx_ring_count callback to
> optimize RX ring queries") added specific support for GRXRINGS callback,
> simplifying .get_rxnfc.
>
> Remove the handling of GRXRINGS in .get_rxnfc() by moving it to the new
> .get_rx_ring_count() for both the mlx5 ethernet and IPoIB drivers.
>
> The ETHTOOL_GRXRINGS handling was previously kept in .get_rxnfc() to
> support "ethtool -x" when CONFIG_MLX5_EN_RXNFC=n. With the new
> dedicated .get_rx_ring_count() callback, this is no longer necessary.
>
> This simplifies the RX ring count retrieval and aligns mlx5 with the new
> ethtool API for querying RX ring parameters.
>
> Signed-off-by: Breno Leitao <leitao@debian.org>
> ---
> drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c | 18 ++++++++----------
> .../net/ethernet/mellanox/mlx5/core/ipoib/ethtool.c | 18 ++++++++----------
> 2 files changed, 16 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c b/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c
> index 01b8f05a23db..939e274779b3 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c
> @@ -2492,21 +2492,18 @@ static int mlx5e_set_rxfh_fields(struct net_device *dev,
> return mlx5e_ethtool_set_rxfh_fields(priv, cmd, extack);
> }
>
> +static u32 mlx5e_get_rx_ring_count(struct net_device *dev)
> +{
> + struct mlx5e_priv *priv = netdev_priv(dev);
> +
> + return priv->channels.params.num_channels;
> +}
> +
> static int mlx5e_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
> u32 *rule_locs)
> {
> struct mlx5e_priv *priv = netdev_priv(dev);
>
> - /* ETHTOOL_GRXRINGS is needed by ethtool -x which is not part
> - * of rxnfc. We keep this logic out of mlx5e_ethtool_get_rxnfc,
> - * to avoid breaking "ethtool -x" when mlx5e_ethtool_get_rxnfc
> - * is compiled out via CONFIG_MLX5_EN_RXNFC=n.
> - */
> - if (info->cmd == ETHTOOL_GRXRINGS) {
> - info->data = priv->channels.params.num_channels;
> - return 0;
> - }
> -
> return mlx5e_ethtool_get_rxnfc(priv, info, rule_locs);
> }
>
> @@ -2766,6 +2763,7 @@ const struct ethtool_ops mlx5e_ethtool_ops = {
> .remove_rxfh_context = mlx5e_remove_rxfh_context,
> .get_rxnfc = mlx5e_get_rxnfc,
> .set_rxnfc = mlx5e_set_rxnfc,
> + .get_rx_ring_count = mlx5e_get_rx_ring_count,
> .get_tunable = mlx5e_get_tunable,
> .set_tunable = mlx5e_set_tunable,
> .get_pause_stats = mlx5e_get_pause_stats,
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ethtool.c b/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ethtool.c
> index 4b3430ac3905..3b2f54ca30a8 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ethtool.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ethtool.c
> @@ -266,21 +266,18 @@ static int mlx5i_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
> return mlx5e_ethtool_set_rxnfc(priv, cmd);
> }
>
> +static u32 mlx5i_get_rx_ring_count(struct net_device *dev)
> +{
> + struct mlx5e_priv *priv = mlx5i_epriv(dev);
> +
> + return priv->channels.params.num_channels;
> +}
> +
> static int mlx5i_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
> u32 *rule_locs)
> {
> struct mlx5e_priv *priv = mlx5i_epriv(dev);
>
> - /* ETHTOOL_GRXRINGS is needed by ethtool -x which is not part
> - * of rxnfc. We keep this logic out of mlx5e_ethtool_get_rxnfc,
> - * to avoid breaking "ethtool -x" when mlx5e_ethtool_get_rxnfc
> - * is compiled out via CONFIG_MLX5_EN_RXNFC=n.
> - */
> - if (info->cmd == ETHTOOL_GRXRINGS) {
> - info->data = priv->channels.params.num_channels;
> - return 0;
> - }
> -
> return mlx5e_ethtool_get_rxnfc(priv, info, rule_locs);
> }
>
> @@ -304,6 +301,7 @@ const struct ethtool_ops mlx5i_ethtool_ops = {
> .set_rxfh_fields = mlx5i_set_rxfh_fields,
> .get_rxnfc = mlx5i_get_rxnfc,
> .set_rxnfc = mlx5i_set_rxnfc,
> + .get_rx_ring_count = mlx5i_get_rx_ring_count,
> .get_link_ksettings = mlx5i_get_link_ksettings,
> .get_link = ethtool_op_get_link,
> };
>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Thanks.
next prev parent reply other threads:[~2025-11-17 13:41 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-13 16:46 [PATCH 0/2] net: mlx: migrate to new get_rx_ring_count ethtool API Breno Leitao
2025-11-13 16:46 ` [PATCH 1/2] mlx4: extract GRXRINGS from .get_rxnfc Breno Leitao
2025-11-17 12:31 ` Tariq Toukan
2025-11-13 16:46 ` [PATCH 2/2] mlx5: " Breno Leitao
2025-11-17 13:41 ` Tariq Toukan [this message]
2025-11-13 16:48 ` [PATCH 0/2] net: mlx: migrate to new get_rx_ring_count ethtool API Breno Leitao
2025-11-14 0:35 ` Jakub Kicinski
2025-11-18 1:00 ` patchwork-bot+netdevbpf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e9d75cda-b017-408f-9308-3e8631d62192@gmail.com \
--to=ttoukan.linux@gmail.com \
--cc=andrew+netdev@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kernel-team@meta.com \
--cc=kuba@kernel.org \
--cc=leitao@debian.org \
--cc=leon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=mbloch@nvidia.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=saeedm@nvidia.com \
--cc=tariqt@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).