net/mlx5: DR, Fix matcher disconnect error flow
authorRongwei Liu <rongweil@nvidia.com>
Wed, 26 Oct 2022 13:51:41 +0000 (14:51 +0100)
committerJakub Kicinski <kuba@kernel.org>
Thu, 27 Oct 2022 18:06:50 +0000 (11:06 -0700)
When 2nd flow rules arrives, it will merge together with the
1st one if matcher criteria is the same.

If merge fails, driver will rollback the merge contents, and
reject the 2nd rule. At rollback stage, matcher can't be
disconnected unconditionally, otherise the 1st rule can't be
hit anymore.

Add logic to check if the matcher should be disconnected or not.

Fixes: cc2295cd54e4 ("net/mlx5: DR, Improve steering for empty or RX/TX-only matchers")
Signed-off-by: Rongwei Liu <rongweil@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
Link: https://lore.kernel.org/r/20221026135153.154807-4-saeed@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/mellanox/mlx5/core/steering/dr_rule.c

index ddfaf78..91ff19f 100644 (file)
@@ -1200,7 +1200,8 @@ free_rule:
        }
 
 remove_from_nic_tbl:
-       mlx5dr_matcher_remove_from_tbl_nic(dmn, nic_matcher);
+       if (!nic_matcher->rules)
+               mlx5dr_matcher_remove_from_tbl_nic(dmn, nic_matcher);
 
 free_hw_ste:
        mlx5dr_domain_nic_unlock(nic_dmn);