net/mlx5e: E-Switch, Pass other_vport flag if vport is not 0
authorRoi Dayan <roid@nvidia.com>
Sun, 28 May 2023 14:10:43 +0000 (17:10 +0300)
committerSaeed Mahameed <saeedm@nvidia.com>
Fri, 23 Jun 2023 19:27:34 +0000 (12:27 -0700)
When creating flow table for shared fdb resources, there is
only need to pass other_vport flag if vport is not 0 or
if the port is ECPF in BlueField.

Signed-off-by: Roi Dayan <roid@nvidia.com>
Reviewed-by: Shay Drory <shayd@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c

index 6f3b7d5..ee507b1 100644 (file)
@@ -2551,13 +2551,13 @@ static int __esw_set_master_egress_rule(struct mlx5_core_dev *master,
        return err;
 }
 
-static int esw_master_egress_create_resources(struct mlx5_flow_namespace *egress_ns,
+static int esw_master_egress_create_resources(struct mlx5_eswitch *esw,
+                                             struct mlx5_flow_namespace *egress_ns,
                                              struct mlx5_vport *vport, size_t count)
 {
        int inlen = MLX5_ST_SZ_BYTES(create_flow_group_in);
        struct mlx5_flow_table_attr ft_attr = {
                .max_fte = count, .prio = 0, .level = 0,
-               .flags = MLX5_FLOW_TABLE_OTHER_VPORT,
        };
        struct mlx5_flow_table *acl;
        struct mlx5_flow_group *g;
@@ -2572,6 +2572,9 @@ static int esw_master_egress_create_resources(struct mlx5_flow_namespace *egress
        if (!flow_group_in)
                return -ENOMEM;
 
+       if (vport->vport || mlx5_core_is_ecpf(esw->dev))
+               ft_attr.flags = MLX5_FLOW_TABLE_OTHER_VPORT;
+
        acl = mlx5_create_vport_flow_table(egress_ns, &ft_attr, vport->vport);
        if (IS_ERR(acl)) {
                err = PTR_ERR(acl);
@@ -2642,7 +2645,7 @@ static int esw_set_master_egress_rule(struct mlx5_core_dev *master,
        if (vport->egress.acl && vport->egress.type != VPORT_EGRESS_ACL_TYPE_SHARED_FDB)
                return 0;
 
-       err = esw_master_egress_create_resources(egress_ns, vport, count);
+       err = esw_master_egress_create_resources(esw, egress_ns, vport, count);
        if (err)
                return err;