return 0;
 }
 
+static void dr_rule_set_last_ste_miss_addr(struct mlx5dr_matcher *matcher,
+                                          struct mlx5dr_matcher_rx_tx *nic_matcher,
+                                          u8 *hw_ste)
+{
+       struct mlx5dr_ste_ctx *ste_ctx = matcher->tbl->dmn->ste_ctx;
+       u64 icm_addr;
+
+       icm_addr = mlx5dr_icm_pool_get_chunk_icm_addr(nic_matcher->e_anchor->chunk);
+       mlx5dr_ste_set_miss_addr(ste_ctx, hw_ste, icm_addr);
+}
+
 static struct mlx5dr_ste *
 dr_rule_create_collision_htbl(struct mlx5dr_matcher *matcher,
                              struct mlx5dr_matcher_rx_tx *nic_matcher,
                              u8 *hw_ste)
 {
        struct mlx5dr_domain *dmn = matcher->tbl->dmn;
-       struct mlx5dr_ste_ctx *ste_ctx = dmn->ste_ctx;
        struct mlx5dr_ste_htbl *new_htbl;
        struct mlx5dr_ste *ste;
-       u64 icm_addr;
 
        /* Create new table for miss entry */
        new_htbl = mlx5dr_ste_htbl_alloc(dmn->ste_icm_pool,
 
        /* One and only entry, never grows */
        ste = new_htbl->chunk->ste_arr;
-       icm_addr = mlx5dr_icm_pool_get_chunk_icm_addr(nic_matcher->e_anchor->chunk);
-       mlx5dr_ste_set_miss_addr(ste_ctx, hw_ste, icm_addr);
+       dr_rule_set_last_ste_miss_addr(matcher, nic_matcher, hw_ste);
        mlx5dr_htbl_get(new_htbl);
 
        return ste;
        bool use_update_list = false;
        u8 hw_ste[DR_STE_SIZE] = {};
        struct mlx5dr_ste *new_ste;
-       u64 icm_addr;
        int new_idx;
        u8 sb_idx;
 
        mlx5dr_ste_set_bit_mask(hw_ste, nic_matcher->ste_builder[sb_idx].bit_mask);
 
        /* Copy STE control and tag */
-       icm_addr = mlx5dr_icm_pool_get_chunk_icm_addr(nic_matcher->e_anchor->chunk);
        memcpy(hw_ste, mlx5dr_ste_get_hw_ste(cur_ste), DR_STE_SIZE_REDUCED);
-       mlx5dr_ste_set_miss_addr(dmn->ste_ctx, hw_ste, icm_addr);
+       dr_rule_set_last_ste_miss_addr(matcher, nic_matcher, hw_ste);
 
        new_idx = mlx5dr_ste_calc_hash_index(hw_ste, new_htbl);
        new_ste = &new_htbl->chunk->ste_arr[new_idx];
 {
        struct mlx5dr_domain *dmn = matcher->tbl->dmn;
        struct mlx5dr_ste_send_info *ste_info;
-       u64 icm_addr;
 
        /* Take ref on table, only on first time this ste is used */
        mlx5dr_htbl_get(cur_htbl);
        /* new entry -> new branch */
        list_add_tail(&ste->miss_list_node, miss_list);
 
-       icm_addr = mlx5dr_icm_pool_get_chunk_icm_addr(nic_matcher->e_anchor->chunk);
-       mlx5dr_ste_set_miss_addr(dmn->ste_ctx, hw_ste, icm_addr);
+       dr_rule_set_last_ste_miss_addr(matcher, nic_matcher, hw_ste);
 
        ste->ste_chain_location = ste_location;