mlxsw: spectrum_acl: Remove unnecessary arg on action_replace call path
authorJiri Pirko <jiri@mellanox.com>
Mon, 28 Jan 2019 12:02:07 +0000 (12:02 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2019 18:43:15 +0000 (10:43 -0800)
No need to pass ruleset/group and chunk pointers on action_replace call
path, nobody uses them.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/spectrum.h
drivers/net/ethernet/mellanox/mlxsw/spectrum1_acl_tcam.c
drivers/net/ethernet/mellanox/mlxsw/spectrum2_acl_tcam.c
drivers/net/ethernet/mellanox/mlxsw/spectrum_acl.c
drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_atcam.c
drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_ctcam.c
drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.c
drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.h

index 9384b10..4fe0996 100644 (file)
@@ -721,8 +721,7 @@ struct mlxsw_sp_acl_tcam_ops {
                          void *region_priv, void *chunk_priv,
                          void *entry_priv);
        int (*entry_action_replace)(struct mlxsw_sp *mlxsw_sp,
-                                   void *region_priv, void *chunk_priv,
-                                   void *entry_priv,
+                                   void *region_priv, void *entry_priv,
                                    struct mlxsw_sp_acl_rule_info *rulei);
        int (*entry_activity_get)(struct mlxsw_sp *mlxsw_sp,
                                  void *region_priv, void *entry_priv,
index fe270c1..6e44452 100644 (file)
@@ -194,8 +194,7 @@ static void mlxsw_sp1_acl_tcam_entry_del(struct mlxsw_sp *mlxsw_sp,
 
 static int
 mlxsw_sp1_acl_tcam_entry_action_replace(struct mlxsw_sp *mlxsw_sp,
-                                       void *region_priv, void *chunk_priv,
-                                       void *entry_priv,
+                                       void *region_priv, void *entry_priv,
                                        struct mlxsw_sp_acl_rule_info *rulei)
 {
        return -EOPNOTSUPP;
index 234ab51..d380b34 100644 (file)
@@ -212,18 +212,15 @@ static void mlxsw_sp2_acl_tcam_entry_del(struct mlxsw_sp *mlxsw_sp,
 
 static int
 mlxsw_sp2_acl_tcam_entry_action_replace(struct mlxsw_sp *mlxsw_sp,
-                                       void *region_priv, void *chunk_priv,
-                                       void *entry_priv,
+                                       void *region_priv, void *entry_priv,
                                        struct mlxsw_sp_acl_rule_info *rulei)
 {
        struct mlxsw_sp2_acl_tcam_region *region = region_priv;
-       struct mlxsw_sp2_acl_tcam_chunk *chunk = chunk_priv;
        struct mlxsw_sp2_acl_tcam_entry *entry = entry_priv;
 
        entry->act_block = rulei->act_block;
        return mlxsw_sp_acl_atcam_entry_action_replace(mlxsw_sp,
                                                       &region->aregion,
-                                                      &chunk->achunk,
                                                       &entry->aentry, rulei);
 }
 
index 695d333..bd40ed0 100644 (file)
@@ -742,8 +742,7 @@ int mlxsw_sp_acl_rule_action_replace(struct mlxsw_sp *mlxsw_sp,
        rulei = mlxsw_sp_acl_rule_rulei(rule);
        rulei->act_block = afa_block;
 
-       return ops->rule_action_replace(mlxsw_sp, ruleset->priv, rule->priv,
-                                       rule->rulei);
+       return ops->rule_action_replace(mlxsw_sp, rule->priv, rule->rulei);
 }
 
 struct mlxsw_sp_acl_rule *
index 80fb268..40dc76a 100644 (file)
@@ -603,7 +603,6 @@ void mlxsw_sp_acl_atcam_entry_del(struct mlxsw_sp *mlxsw_sp,
 int
 mlxsw_sp_acl_atcam_entry_action_replace(struct mlxsw_sp *mlxsw_sp,
                                        struct mlxsw_sp_acl_atcam_region *aregion,
-                                       struct mlxsw_sp_acl_atcam_chunk *achunk,
                                        struct mlxsw_sp_acl_atcam_entry *aentry,
                                        struct mlxsw_sp_acl_rule_info *rulei)
 {
@@ -612,7 +611,6 @@ mlxsw_sp_acl_atcam_entry_action_replace(struct mlxsw_sp *mlxsw_sp,
        if (mlxsw_sp_acl_atcam_is_centry(aentry))
                err = mlxsw_sp_acl_ctcam_entry_action_replace(mlxsw_sp,
                                                              &aregion->cregion,
-                                                             &achunk->cchunk,
                                                              &aentry->centry,
                                                              rulei);
        else
index ac22283..05680a7 100644 (file)
@@ -223,7 +223,6 @@ void mlxsw_sp_acl_ctcam_entry_del(struct mlxsw_sp *mlxsw_sp,
 
 int mlxsw_sp_acl_ctcam_entry_action_replace(struct mlxsw_sp *mlxsw_sp,
                                            struct mlxsw_sp_acl_ctcam_region *cregion,
-                                           struct mlxsw_sp_acl_ctcam_chunk *cchunk,
                                            struct mlxsw_sp_acl_ctcam_entry *centry,
                                            struct mlxsw_sp_acl_rule_info *rulei)
 {
index fe230ac..5d29c50 100644 (file)
@@ -781,7 +781,6 @@ static void mlxsw_sp_acl_tcam_entry_del(struct mlxsw_sp *mlxsw_sp,
 
 static int
 mlxsw_sp_acl_tcam_entry_action_replace(struct mlxsw_sp *mlxsw_sp,
-                                      struct mlxsw_sp_acl_tcam_group *group,
                                       struct mlxsw_sp_acl_tcam_entry *entry,
                                       struct mlxsw_sp_acl_rule_info *rulei)
 {
@@ -789,7 +788,7 @@ mlxsw_sp_acl_tcam_entry_action_replace(struct mlxsw_sp *mlxsw_sp,
        struct mlxsw_sp_acl_tcam_chunk *chunk = entry->chunk;
        struct mlxsw_sp_acl_tcam_region *region = chunk->region;
 
-       return ops->entry_action_replace(mlxsw_sp, region->priv, chunk->priv,
+       return ops->entry_action_replace(mlxsw_sp, region->priv,
                                         entry->priv, rulei);
 }
 
@@ -955,7 +954,6 @@ mlxsw_sp_acl_tcam_flower_rule_del(struct mlxsw_sp *mlxsw_sp, void *rule_priv)
 
 static int
 mlxsw_sp_acl_tcam_flower_rule_action_replace(struct mlxsw_sp *mlxsw_sp,
-                                            void *ruleset_priv,
                                             void *rule_priv,
                                             struct mlxsw_sp_acl_rule_info *rulei)
 {
@@ -1084,14 +1082,13 @@ mlxsw_sp_acl_tcam_mr_rule_del(struct mlxsw_sp *mlxsw_sp, void *rule_priv)
 
 static int
 mlxsw_sp_acl_tcam_mr_rule_action_replace(struct mlxsw_sp *mlxsw_sp,
-                                        void *ruleset_priv, void *rule_priv,
+                                        void *rule_priv,
                                         struct mlxsw_sp_acl_rule_info *rulei)
 {
-       struct mlxsw_sp_acl_tcam_mr_ruleset *ruleset = ruleset_priv;
        struct mlxsw_sp_acl_tcam_mr_rule *rule = rule_priv;
 
-       return mlxsw_sp_acl_tcam_entry_action_replace(mlxsw_sp, &ruleset->group,
-                                                     &rule->entry, rulei);
+       return mlxsw_sp_acl_tcam_entry_action_replace(mlxsw_sp, &rule->entry,
+                                                     rulei);
 }
 
 static int
index 0f1a9de..10512b7 100644 (file)
@@ -48,8 +48,7 @@ struct mlxsw_sp_acl_profile_ops {
                        void *ruleset_priv, void *rule_priv,
                        struct mlxsw_sp_acl_rule_info *rulei);
        void (*rule_del)(struct mlxsw_sp *mlxsw_sp, void *rule_priv);
-       int (*rule_action_replace)(struct mlxsw_sp *mlxsw_sp,
-                                  void *ruleset_priv, void *rule_priv,
+       int (*rule_action_replace)(struct mlxsw_sp *mlxsw_sp, void *rule_priv,
                                   struct mlxsw_sp_acl_rule_info *rulei);
        int (*rule_activity_get)(struct mlxsw_sp *mlxsw_sp, void *rule_priv,
                                 bool *activity);
@@ -126,7 +125,6 @@ void mlxsw_sp_acl_ctcam_entry_del(struct mlxsw_sp *mlxsw_sp,
                                  struct mlxsw_sp_acl_ctcam_entry *centry);
 int mlxsw_sp_acl_ctcam_entry_action_replace(struct mlxsw_sp *mlxsw_sp,
                                            struct mlxsw_sp_acl_ctcam_region *cregion,
-                                           struct mlxsw_sp_acl_ctcam_chunk *cchunk,
                                            struct mlxsw_sp_acl_ctcam_entry *centry,
                                            struct mlxsw_sp_acl_rule_info *rulei);
 static inline unsigned int
@@ -224,7 +222,6 @@ void mlxsw_sp_acl_atcam_entry_del(struct mlxsw_sp *mlxsw_sp,
                                  struct mlxsw_sp_acl_atcam_entry *aentry);
 int mlxsw_sp_acl_atcam_entry_action_replace(struct mlxsw_sp *mlxsw_sp,
                                            struct mlxsw_sp_acl_atcam_region *aregion,
-                                           struct mlxsw_sp_acl_atcam_chunk *achunk,
                                            struct mlxsw_sp_acl_atcam_entry *aentry,
                                            struct mlxsw_sp_acl_rule_info *rulei);
 int mlxsw_sp_acl_atcam_init(struct mlxsw_sp *mlxsw_sp,