[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240220032948.35305-3-saeed@kernel.org>
Date: Mon, 19 Feb 2024 19:29:46 -0800
From: Saeed Mahameed <saeed@...nel.org>
To: "David S. Miller" <davem@...emloft.net>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>,
Eric Dumazet <edumazet@...gle.com>
Cc: Saeed Mahameed <saeedm@...dia.com>,
netdev@...r.kernel.org,
Tariq Toukan <tariqt@...dia.com>,
Gal Pressman <gal@...dia.com>,
Leon Romanovsky <leonro@...dia.com>
Subject: [net 08/10] net/mlx5e: RSS, Unconfigure RXFH after changing channels number
From: Carolina Jubran <cjubran@...dia.com>
Changing the channels number after configuring the receive
flow hash indirection table may alter the RSS table size.
The previous configuration may no longer be compatible with
the current receive flow hash indirection table.
Whenever the channels number is modified,
unconfigure the receive flow hash indirection table
and revert it to a uniform table.
Fixes: 74a8dadac17e ("net/mlx5e: Preparations for supporting larger number of channels")
Signed-off-by: Carolina Jubran <cjubran@...dia.com>
Reviewed-by: Tariq Toukan <tariqt@...dia.com>
Signed-off-by: Saeed Mahameed <saeedm@...dia.com>
---
.../ethernet/mellanox/mlx5/core/en_ethtool.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c b/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c
index cc51ce16df14..ae459570c9ef 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c
@@ -435,6 +435,7 @@ int mlx5e_ethtool_set_channels(struct mlx5e_priv *priv,
struct mlx5e_params *cur_params = &priv->channels.params;
unsigned int count = ch->combined_count;
struct mlx5e_params new_params;
+ bool rxfh_configured;
bool arfs_enabled;
int rss_cnt;
bool opened;
@@ -492,10 +493,25 @@ int mlx5e_ethtool_set_channels(struct mlx5e_priv *priv,
if (arfs_enabled)
mlx5e_arfs_disable(priv->fs);
+ /* Changing the channels number can affect the size of the RXFH indir table.
+ * Therefore, if the RXFH was previously configured,
+ * unconfigure it to ensure that the RXFH is reverted to a uniform table.
+ */
+ rxfh_configured = netif_is_rxfh_configured(priv->netdev);
+ if (rxfh_configured)
+ priv->netdev->priv_flags &= ~IFF_RXFH_CONFIGURED;
+
/* Switch to new channels, set new parameters and close old ones */
err = mlx5e_safe_switch_params(priv, &new_params,
mlx5e_num_channels_changed_ctx, NULL, true);
-
+ if (rxfh_configured) {
+ /* Revert the RXFH configured */
+ if (err)
+ priv->netdev->priv_flags |= IFF_RXFH_CONFIGURED;
+ else
+ netdev_warn(priv->netdev, "%s: RXFH table entries reverting to default\n",
+ __func__);
+ }
if (arfs_enabled) {
int err2 = mlx5e_arfs_enable(priv->fs);
--
2.43.2
Powered by blists - more mailing lists