]> git.baikalelectronics.ru Git - kernel.git/commitdiff
net/mlx5e: Always set attr mdev pointer
authorVlad Buslov <vladbu@nvidia.com>
Wed, 23 Sep 2020 14:30:44 +0000 (17:30 +0300)
committerSaeed Mahameed <saeedm@nvidia.com>
Sat, 6 Feb 2021 04:53:34 +0000 (20:53 -0800)
Eswitch offloads extensions in following patches in the series require
attr->esw_attr->in_mdev pointer to always be set. This is already the case
for all code paths except mlx5_tc_ct_entry_add_rule() function. Fix the
function to assign mdev pointer with priv->mdev value.

Signed-off-by: Vlad Buslov <vladbu@nvidia.com>
Signed-off-by: Dmytro Linkin <dlinkin@nvidia.com>
Reviewed-by: Roi Dayan <roid@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c

index 40aaa105b2fcd63c10e3230d0dc745b7aa9295d6..3fb75dcdc68d96d86b01687735ebcb13c8b00120 100644 (file)
@@ -711,6 +711,8 @@ mlx5_tc_ct_entry_add_rule(struct mlx5_tc_ct_priv *ct_priv,
        attr->outer_match_level = MLX5_MATCH_L4;
        attr->counter = entry->counter->counter;
        attr->flags |= MLX5_ESW_ATTR_FLAG_NO_IN_PORT;
+       if (ct_priv->ns_type == MLX5_FLOW_NAMESPACE_FDB)
+               attr->esw_attr->in_mdev = priv->mdev;
 
        mlx5_tc_ct_set_tuple_match(netdev_priv(ct_priv->netdev), spec, flow_rule);
        mlx5e_tc_match_to_reg_match(spec, ZONE_TO_REG, entry->tuple.zone, MLX5_CT_ZONE_MASK);