OSDN Git Service

mlxsw: spectrum_kvdl: Pass entry_count to free function
authorJiri Pirko <jiri@mellanox.com>
Sun, 8 Jul 2018 20:51:18 +0000 (23:51 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 9 Jul 2018 23:24:16 +0000 (16:24 -0700)
For the Spectrum-2 KVD linear manager implementation, entry_count will be
needed even for the free function. So pass it down.

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_kvdl.c
drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_flex_actions.c
drivers/net/ethernet/mellanox/mlxsw/spectrum_kvdl.c
drivers/net/ethernet/mellanox/mlxsw/spectrum_mr_tcam.c
drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c

index a67d1dd..25ea06d 100644 (file)
@@ -467,7 +467,7 @@ struct mlxsw_sp_kvdl_ops {
                     unsigned int entry_count, u32 *p_entry_index);
        void (*free)(struct mlxsw_sp *mlxsw_sp, void *priv,
                     enum mlxsw_sp_kvdl_entry_type type,
-                    int entry_index);
+                    unsigned int entry_count, int entry_index);
        int (*alloc_size_query)(struct mlxsw_sp *mlxsw_sp, void *priv,
                                enum mlxsw_sp_kvdl_entry_type type,
                                unsigned int entry_count,
@@ -482,7 +482,7 @@ int mlxsw_sp_kvdl_alloc(struct mlxsw_sp *mlxsw_sp,
                        unsigned int entry_count, u32 *p_entry_index);
 void mlxsw_sp_kvdl_free(struct mlxsw_sp *mlxsw_sp,
                        enum mlxsw_sp_kvdl_entry_type type,
-                       int entry_index);
+                       unsigned int entry_count, int entry_index);
 int mlxsw_sp_kvdl_alloc_count_query(struct mlxsw_sp *mlxsw_sp,
                                    enum mlxsw_sp_kvdl_entry_type type,
                                    unsigned int entry_count,
index 86e0b99..0d45838 100644 (file)
@@ -194,7 +194,7 @@ static int mlxsw_sp1_kvdl_alloc(struct mlxsw_sp *mlxsw_sp, void *priv,
 
 static void mlxsw_sp1_kvdl_free(struct mlxsw_sp *mlxsw_sp, void *priv,
                                enum mlxsw_sp_kvdl_entry_type type,
-                               int entry_index)
+                               unsigned int entry_count, int entry_index)
 {
        struct mlxsw_sp1_kvdl *kvdl = priv;
        struct mlxsw_sp1_kvdl_part *part;
index f98fb2c..6a7c340 100644 (file)
@@ -64,7 +64,7 @@ static int mlxsw_sp_act_kvdl_set_add(void *priv, u32 *p_kvdl_index,
 
 err_pefa_write:
        mlxsw_sp_kvdl_free(mlxsw_sp, MLXSW_SP_KVDL_ENTRY_TYPE_ACTSET,
-                          kvdl_index);
+                          1, kvdl_index);
        return err;
 }
 
@@ -76,7 +76,7 @@ static void mlxsw_sp_act_kvdl_set_del(void *priv, u32 kvdl_index,
        if (is_first)
                return;
        mlxsw_sp_kvdl_free(mlxsw_sp, MLXSW_SP_KVDL_ENTRY_TYPE_ACTSET,
-                          kvdl_index);
+                          1, kvdl_index);
 }
 
 static int mlxsw_sp_act_kvdl_fwd_entry_add(void *priv, u32 *p_kvdl_index,
@@ -100,7 +100,7 @@ static int mlxsw_sp_act_kvdl_fwd_entry_add(void *priv, u32 *p_kvdl_index,
 
 err_ppbs_write:
        mlxsw_sp_kvdl_free(mlxsw_sp, MLXSW_SP_KVDL_ENTRY_TYPE_PBS,
-                          kvdl_index);
+                          1, kvdl_index);
        return err;
 }
 
@@ -109,7 +109,7 @@ static void mlxsw_sp_act_kvdl_fwd_entry_del(void *priv, u32 kvdl_index)
        struct mlxsw_sp *mlxsw_sp = priv;
 
        mlxsw_sp_kvdl_free(mlxsw_sp, MLXSW_SP_KVDL_ENTRY_TYPE_PBS,
-                          kvdl_index);
+                          1, kvdl_index);
 }
 
 static int
index 3f9130a..fd55758 100644 (file)
@@ -86,11 +86,12 @@ int mlxsw_sp_kvdl_alloc(struct mlxsw_sp *mlxsw_sp,
 
 void mlxsw_sp_kvdl_free(struct mlxsw_sp *mlxsw_sp,
                        enum mlxsw_sp_kvdl_entry_type type,
-                       int entry_index)
+                       unsigned int entry_count, int entry_index)
 {
        struct mlxsw_sp_kvdl *kvdl = mlxsw_sp->kvdl;
 
-       kvdl->kvdl_ops->free(mlxsw_sp, kvdl->priv, type, entry_index);
+       kvdl->kvdl_ops->free(mlxsw_sp, kvdl->priv, type,
+                            entry_count, entry_index);
 }
 
 int mlxsw_sp_kvdl_alloc_count_query(struct mlxsw_sp *mlxsw_sp,
index d1fd85a..87d9423 100644 (file)
@@ -111,7 +111,7 @@ mlxsw_sp_mr_erif_sublist_destroy(struct mlxsw_sp *mlxsw_sp,
 {
        list_del(&erif_sublist->list);
        mlxsw_sp_kvdl_free(mlxsw_sp, MLXSW_SP_KVDL_ENTRY_TYPE_MCRIGR,
-                          erif_sublist->rigr2_kvdl_index);
+                          1, erif_sublist->rigr2_kvdl_index);
        kfree(erif_sublist);
 }
 
index fb5980e..b4126db 100644 (file)
@@ -1124,7 +1124,7 @@ static void mlxsw_sp_fib_entry_decap_fini(struct mlxsw_sp *mlxsw_sp,
        fib_entry->decap.ipip_entry->decap_fib_entry = NULL;
        fib_entry->decap.ipip_entry = NULL;
        mlxsw_sp_kvdl_free(mlxsw_sp, MLXSW_SP_KVDL_ENTRY_TYPE_ADJ,
-                          fib_entry->decap.tunnel_index);
+                          1, fib_entry->decap.tunnel_index);
 }
 
 static struct mlxsw_sp_fib_node *
@@ -3315,7 +3315,7 @@ mlxsw_sp_nexthop_group_refresh(struct mlxsw_sp *mlxsw_sp,
        err = mlxsw_sp_adj_index_mass_update(mlxsw_sp, nh_grp,
                                             old_adj_index, old_ecmp_size);
        mlxsw_sp_kvdl_free(mlxsw_sp, MLXSW_SP_KVDL_ENTRY_TYPE_ADJ,
-                          old_adj_index);
+                          old_ecmp_size, old_adj_index);
        if (err) {
                dev_warn(mlxsw_sp->bus_info->dev, "Failed to mass-update adjacency index for nexthop group.\n");
                goto set_trap;
@@ -3338,7 +3338,7 @@ set_trap:
                dev_warn(mlxsw_sp->bus_info->dev, "Failed to set traps for fib entries.\n");
        if (old_adj_index_valid)
                mlxsw_sp_kvdl_free(mlxsw_sp, MLXSW_SP_KVDL_ENTRY_TYPE_ADJ,
-                                  nh_grp->adj_index);
+                                  nh_grp->ecmp_size, nh_grp->adj_index);
 }
 
 static void __mlxsw_sp_nexthop_neigh_update(struct mlxsw_sp_nexthop *nh,