net/mlx5: Enable SD feature
authorTariq Toukan <tariqt@nvidia.com>
Thu, 15 Feb 2024 03:08:13 +0000 (19:08 -0800)
committerSaeed Mahameed <saeedm@nvidia.com>
Thu, 7 Mar 2024 08:40:40 +0000 (00:40 -0800)
Have an actual mlx5_sd instance in the core device, and fix the getter
accordingly. This allows SD stuff to flow, the feature becomes supported
only here.

Signed-off-by: Tariq Toukan <tariqt@nvidia.com>
Reviewed-by: Gal Pressman <gal@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/lib/mlx5.h
include/linux/mlx5/driver.h

index 0810b92..37d5f44 100644 (file)
@@ -59,10 +59,11 @@ struct mlx5_sd;
 
 static inline struct mlx5_sd *mlx5_get_sd(struct mlx5_core_dev *dev)
 {
-       return NULL;
+       return dev->sd;
 }
 
 static inline void mlx5_set_sd(struct mlx5_core_dev *dev, struct mlx5_sd *sd)
 {
+       dev->sd = sd;
 }
 #endif
index 41f03b3..bf9324a 100644 (file)
@@ -823,6 +823,7 @@ struct mlx5_core_dev {
        struct blocking_notifier_head macsec_nh;
 #endif
        u64 num_ipsec_offloads;
+       struct mlx5_sd          *sd;
 };
 
 struct mlx5_db {