mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
net/mlx5e: Don't leak RSS context in case of error
If mlx5e_rx_res_rss_set_rxfh() fails during mlx5e_create_rxfh_context(),
the RSS context is not cleaned up.
This leaves a stale entry in 'res->rss[rss_idx]' that occupies a context
slot.
Destroy the RSS context before returning the error.
Fixes: 6c2509d446 ("net/mlx5e: Add error flow for ethtool -X command")
Signed-off-by: Gal Pressman <gal@nvidia.com>
Reviewed-by: Nimrod Oren <noren@nvidia.com>
Signed-off-by: Tariq Toukan <tariqt@nvidia.com>
Link: https://patch.msgid.link/20260513062737.333259-1-tariqt@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
f508262ae9
commit
c9d08c8c4c
|
|
@ -1574,8 +1574,11 @@ static int mlx5e_create_rxfh_context(struct net_device *dev,
|
|||
rxfh->indir, rxfh->key,
|
||||
hfunc == ETH_RSS_HASH_NO_CHANGE ? NULL : &hfunc,
|
||||
rxfh->input_xfrm == RXH_XFRM_NO_CHANGE ? NULL : &symmetric);
|
||||
if (err)
|
||||
if (err) {
|
||||
WARN_ON(mlx5e_rx_res_rss_destroy(priv->rx_res,
|
||||
rxfh->rss_context));
|
||||
goto unlock;
|
||||
}
|
||||
|
||||
mlx5e_rx_res_rss_get_rxfh(priv->rx_res, rxfh->rss_context,
|
||||
ethtool_rxfh_context_indir(ctx),
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user