OSDN Git Service

net/mlx5e: Remove redundant priv arg from parse_pedit_to_reformat()
authorRoi Dayan <roid@nvidia.com>
Tue, 17 Aug 2021 07:26:17 +0000 (10:26 +0300)
committerSaeed Mahameed <saeedm@nvidia.com>
Fri, 24 Sep 2021 18:46:54 +0000 (11:46 -0700)
The priv argument is not being used. remove it.

Signed-off-by: Roi Dayan <roid@nvidia.com>
Reviewed-by: Maor Dickman <maord@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c

index c86fc59..0664ff7 100644 (file)
@@ -2910,8 +2910,7 @@ out_err:
 }
 
 static int
-parse_pedit_to_reformat(struct mlx5e_priv *priv,
-                       const struct flow_action_entry *act,
+parse_pedit_to_reformat(const struct flow_action_entry *act,
                        struct mlx5e_tc_flow_parse_attr *parse_attr,
                        struct netlink_ext_ack *extack)
 {
@@ -2943,7 +2942,7 @@ static int parse_tc_pedit_action(struct mlx5e_priv *priv,
                                 struct netlink_ext_ack *extack)
 {
        if (flow && flow_flag_test(flow, L3_TO_L2_DECAP))
-               return parse_pedit_to_reformat(priv, act, parse_attr, extack);
+               return parse_pedit_to_reformat(act, parse_attr, extack);
 
        return parse_pedit_to_modify_hdr(priv, act, namespace,
                                         parse_attr, hdrs, extack);