Message ID | 186d1af058b29186f7eaefbdc91b16c84111dcf1.1666243464.git.leonro@nvidia.com (mailing list archive) |
---|---|
State | Accepted |
Commit | f8127476930b98fc9e9aa5de0bbf9eeaf45db219 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net,v1] net/mlx5e: Cleanup MACsec uninitialization routine | expand |
Hello: This patch was applied to netdev/net.git (master) by David S. Miller <davem@davemloft.net>: On Thu, 20 Oct 2022 08:28:28 +0300 you wrote: > From: Leon Romanovsky <leonro@nvidia.com> > > The mlx5e_macsec_cleanup() routine has NULL pointer dereferencing if mlx5 > device doesn't support MACsec (priv->macsec will be NULL). > > While at it delete comment line, assignment and extra blank lines, so fix > everything in one patch. > > [...] Here is the summary with links: - [net,v1] net/mlx5e: Cleanup MACsec uninitialization routine https://git.kernel.org/netdev/net/c/f8127476930b You are awesome, thank you!
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_accel/macsec.c b/drivers/net/ethernet/mellanox/mlx5/core/en_accel/macsec.c index 41970067917b..4331235b21ee 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_accel/macsec.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_accel/macsec.c @@ -1846,25 +1846,16 @@ int mlx5e_macsec_init(struct mlx5e_priv *priv) void mlx5e_macsec_cleanup(struct mlx5e_priv *priv) { struct mlx5e_macsec *macsec = priv->macsec; - struct mlx5_core_dev *mdev = macsec->mdev; + struct mlx5_core_dev *mdev = priv->mdev; if (!macsec) return; mlx5_notifier_unregister(mdev, &macsec->nb); - mlx5e_macsec_fs_cleanup(macsec->macsec_fs); - - /* Cleanup workqueue */ destroy_workqueue(macsec->wq); - mlx5e_macsec_aso_cleanup(&macsec->aso, mdev); - - priv->macsec = NULL; - rhashtable_destroy(&macsec->sci_hash); - mutex_destroy(&macsec->lock); - kfree(macsec); }