net/mlx5: E-Switch, Add eswitch pointer to each representor
authorMark Bloch <mbloch@nvidia.com>
Thu, 11 Mar 2021 07:09:11 +0000 (23:09 -0800)
committerSaeed Mahameed <saeedm@nvidia.com>
Fri, 12 Mar 2021 21:07:01 +0000 (13:07 -0800)
Store the managing E-Switch of each representor. This will be used
when a representor is created on eswitch manager 0 but the vport
belongs to eswitch manager 1.

Signed-off-by: Mark Bloch <mbloch@nvidia.com>
Reviewed-by: Saeed Mahameed <saeedm@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
include/linux/mlx5/eswitch.h

index fd5f8b8..f6c0e7e 100644 (file)
@@ -3153,6 +3153,7 @@ void mlx5_eswitch_register_vport_reps(struct mlx5_eswitch *esw,
        esw->offloads.rep_ops[rep_type] = ops;
        mlx5_esw_for_all_reps(esw, i, rep) {
                if (likely(mlx5_eswitch_vport_has_rep(esw, i))) {
+                       rep->esw = esw;
                        rep_data = &rep->rep_data[rep_type];
                        atomic_set(&rep_data->state, REP_REGISTERED);
                }
index 994c2c8..72d480d 100644 (file)
@@ -48,6 +48,7 @@ struct mlx5_eswitch_rep {
        /* Only IB rep is using vport_index */
        u16                    vport_index;
        u32                    vlan_refcount;
+       struct                 mlx5_eswitch *esw;
 };
 
 void mlx5_eswitch_register_vport_reps(struct mlx5_eswitch *esw,