net/mlx5: support flow hit action for aging
[dpdk.git] / drivers / net / mlx5 / mlx5_flow.c
index 0108dbd..d01a4ce 100644 (file)
@@ -669,10 +669,14 @@ mlx5_flow_item_release(struct rte_eth_dev *dev,
        struct mlx5_flow_tunnel_hub *thub = mlx5_tunnel_hub(dev);
        struct mlx5_flow_tunnel *tun;
 
+       rte_spinlock_lock(&thub->sl);
        LIST_FOREACH(tun, &thub->tunnels, chain) {
-               if (&tun->item == pmd_items)
+               if (&tun->item == pmd_items) {
+                       LIST_REMOVE(tun, chain);
                        break;
+               }
        }
+       rte_spinlock_unlock(&thub->sl);
        if (!tun || num_items != 1)
                return rte_flow_error_set(err, EINVAL,
                                          RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
@@ -690,10 +694,14 @@ mlx5_flow_action_release(struct rte_eth_dev *dev,
        struct mlx5_flow_tunnel_hub *thub = mlx5_tunnel_hub(dev);
        struct mlx5_flow_tunnel *tun;
 
+       rte_spinlock_lock(&thub->sl);
        LIST_FOREACH(tun, &thub->tunnels, chain) {
-               if (&tun->action == pmd_actions)
+               if (&tun->action == pmd_actions) {
+                       LIST_REMOVE(tun, chain);
                        break;
+               }
        }
+       rte_spinlock_unlock(&thub->sl);
        if (!tun || num_actions != 1)
                return rte_flow_error_set(err, EINVAL,
                                          RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
@@ -757,32 +765,6 @@ static const struct rte_flow_ops mlx5_flow_ops = {
        .get_restore_info = mlx5_flow_tunnel_get_restore_info,
 };
 
-/* Convert FDIR request to Generic flow. */
-struct mlx5_fdir {
-       struct rte_flow_attr attr;
-       struct rte_flow_item items[4];
-       struct rte_flow_item_eth l2;
-       struct rte_flow_item_eth l2_mask;
-       union {
-               struct rte_flow_item_ipv4 ipv4;
-               struct rte_flow_item_ipv6 ipv6;
-       } l3;
-       union {
-               struct rte_flow_item_ipv4 ipv4;
-               struct rte_flow_item_ipv6 ipv6;
-       } l3_mask;
-       union {
-               struct rte_flow_item_udp udp;
-               struct rte_flow_item_tcp tcp;
-       } l4;
-       union {
-               struct rte_flow_item_udp udp;
-               struct rte_flow_item_tcp tcp;
-       } l4_mask;
-       struct rte_flow_action actions[2];
-       struct rte_flow_action_queue queue;
-};
-
 /* Tunnel information. */
 struct mlx5_flow_tunnel_info {
        uint64_t tunnel; /**< Tunnel bit (see MLX5_FLOW_*). */
@@ -5846,7 +5828,6 @@ flow_list_destroy(struct rte_eth_dev *dev, uint32_t *list,
                  uint32_t flow_idx)
 {
        struct mlx5_priv *priv = dev->data->dev_private;
-       struct mlx5_fdir_flow *priv_fdir_flow = NULL;
        struct rte_flow *flow = mlx5_ipool_get(priv->sh->ipool
                                               [MLX5_IPOOL_RTE_FLOW], flow_idx);
 
@@ -5866,22 +5847,15 @@ flow_list_destroy(struct rte_eth_dev *dev, uint32_t *list,
                rte_spinlock_unlock(&priv->flow_list_lock);
        }
        flow_mreg_del_copy_action(dev, flow);
-       if (flow->fdir) {
-               LIST_FOREACH(priv_fdir_flow, &priv->fdir_flows, next) {
-                       if (priv_fdir_flow->rix_flow == flow_idx)
-                               break;
-               }
-               if (priv_fdir_flow) {
-                       LIST_REMOVE(priv_fdir_flow, next);
-                       mlx5_free(priv_fdir_flow->fdir);
-                       mlx5_free(priv_fdir_flow);
-               }
-       }
        mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_RTE_FLOW], flow_idx);
        if (flow->tunnel) {
                struct mlx5_flow_tunnel *tunnel;
+
+               rte_spinlock_lock(&mlx5_tunnel_hub(dev)->sl);
                tunnel = mlx5_find_tunnel_id(dev, flow->tunnel_id);
                RTE_VERIFY(tunnel);
+               LIST_REMOVE(tunnel, chain);
+               rte_spinlock_unlock(&mlx5_tunnel_hub(dev)->sl);
                if (!__atomic_sub_fetch(&tunnel->refctn, 1, __ATOMIC_RELAXED))
                        mlx5_flow_tunnel_free(dev, tunnel);
        }
@@ -6381,482 +6355,6 @@ mlx5_flow_query(struct rte_eth_dev *dev,
        return 0;
 }
 
-/**
- * Convert a flow director filter to a generic flow.
- *
- * @param dev
- *   Pointer to Ethernet device.
- * @param fdir_filter
- *   Flow director filter to add.
- * @param attributes
- *   Generic flow parameters structure.
- *
- * @return
- *   0 on success, a negative errno value otherwise and rte_errno is set.
- */
-static int
-flow_fdir_filter_convert(struct rte_eth_dev *dev,
-                        const struct rte_eth_fdir_filter *fdir_filter,
-                        struct mlx5_fdir *attributes)
-{
-       struct mlx5_priv *priv = dev->data->dev_private;
-       const struct rte_eth_fdir_input *input = &fdir_filter->input;
-       const struct rte_eth_fdir_masks *mask =
-               &dev->data->dev_conf.fdir_conf.mask;
-
-       /* Validate queue number. */
-       if (fdir_filter->action.rx_queue >= priv->rxqs_n) {
-               DRV_LOG(ERR, "port %u invalid queue number %d",
-                       dev->data->port_id, fdir_filter->action.rx_queue);
-               rte_errno = EINVAL;
-               return -rte_errno;
-       }
-       attributes->attr.ingress = 1;
-       attributes->items[0] = (struct rte_flow_item) {
-               .type = RTE_FLOW_ITEM_TYPE_ETH,
-               .spec = &attributes->l2,
-               .mask = &attributes->l2_mask,
-       };
-       switch (fdir_filter->action.behavior) {
-       case RTE_ETH_FDIR_ACCEPT:
-               attributes->actions[0] = (struct rte_flow_action){
-                       .type = RTE_FLOW_ACTION_TYPE_QUEUE,
-                       .conf = &attributes->queue,
-               };
-               break;
-       case RTE_ETH_FDIR_REJECT:
-               attributes->actions[0] = (struct rte_flow_action){
-                       .type = RTE_FLOW_ACTION_TYPE_DROP,
-               };
-               break;
-       default:
-               DRV_LOG(ERR, "port %u invalid behavior %d",
-                       dev->data->port_id,
-                       fdir_filter->action.behavior);
-               rte_errno = ENOTSUP;
-               return -rte_errno;
-       }
-       attributes->queue.index = fdir_filter->action.rx_queue;
-       /* Handle L3. */
-       switch (fdir_filter->input.flow_type) {
-       case RTE_ETH_FLOW_NONFRAG_IPV4_UDP:
-       case RTE_ETH_FLOW_NONFRAG_IPV4_TCP:
-       case RTE_ETH_FLOW_NONFRAG_IPV4_OTHER:
-               attributes->l3.ipv4.hdr = (struct rte_ipv4_hdr){
-                       .src_addr = input->flow.ip4_flow.src_ip,
-                       .dst_addr = input->flow.ip4_flow.dst_ip,
-                       .time_to_live = input->flow.ip4_flow.ttl,
-                       .type_of_service = input->flow.ip4_flow.tos,
-               };
-               attributes->l3_mask.ipv4.hdr = (struct rte_ipv4_hdr){
-                       .src_addr = mask->ipv4_mask.src_ip,
-                       .dst_addr = mask->ipv4_mask.dst_ip,
-                       .time_to_live = mask->ipv4_mask.ttl,
-                       .type_of_service = mask->ipv4_mask.tos,
-                       .next_proto_id = mask->ipv4_mask.proto,
-               };
-               attributes->items[1] = (struct rte_flow_item){
-                       .type = RTE_FLOW_ITEM_TYPE_IPV4,
-                       .spec = &attributes->l3,
-                       .mask = &attributes->l3_mask,
-               };
-               break;
-       case RTE_ETH_FLOW_NONFRAG_IPV6_UDP:
-       case RTE_ETH_FLOW_NONFRAG_IPV6_TCP:
-       case RTE_ETH_FLOW_NONFRAG_IPV6_OTHER:
-               attributes->l3.ipv6.hdr = (struct rte_ipv6_hdr){
-                       .hop_limits = input->flow.ipv6_flow.hop_limits,
-                       .proto = input->flow.ipv6_flow.proto,
-               };
-
-               memcpy(attributes->l3.ipv6.hdr.src_addr,
-                      input->flow.ipv6_flow.src_ip,
-                      RTE_DIM(attributes->l3.ipv6.hdr.src_addr));
-               memcpy(attributes->l3.ipv6.hdr.dst_addr,
-                      input->flow.ipv6_flow.dst_ip,
-                      RTE_DIM(attributes->l3.ipv6.hdr.src_addr));
-               memcpy(attributes->l3_mask.ipv6.hdr.src_addr,
-                      mask->ipv6_mask.src_ip,
-                      RTE_DIM(attributes->l3_mask.ipv6.hdr.src_addr));
-               memcpy(attributes->l3_mask.ipv6.hdr.dst_addr,
-                      mask->ipv6_mask.dst_ip,
-                      RTE_DIM(attributes->l3_mask.ipv6.hdr.src_addr));
-               attributes->items[1] = (struct rte_flow_item){
-                       .type = RTE_FLOW_ITEM_TYPE_IPV6,
-                       .spec = &attributes->l3,
-                       .mask = &attributes->l3_mask,
-               };
-               break;
-       default:
-               DRV_LOG(ERR, "port %u invalid flow type%d",
-                       dev->data->port_id, fdir_filter->input.flow_type);
-               rte_errno = ENOTSUP;
-               return -rte_errno;
-       }
-       /* Handle L4. */
-       switch (fdir_filter->input.flow_type) {
-       case RTE_ETH_FLOW_NONFRAG_IPV4_UDP:
-               attributes->l4.udp.hdr = (struct rte_udp_hdr){
-                       .src_port = input->flow.udp4_flow.src_port,
-                       .dst_port = input->flow.udp4_flow.dst_port,
-               };
-               attributes->l4_mask.udp.hdr = (struct rte_udp_hdr){
-                       .src_port = mask->src_port_mask,
-                       .dst_port = mask->dst_port_mask,
-               };
-               attributes->items[2] = (struct rte_flow_item){
-                       .type = RTE_FLOW_ITEM_TYPE_UDP,
-                       .spec = &attributes->l4,
-                       .mask = &attributes->l4_mask,
-               };
-               break;
-       case RTE_ETH_FLOW_NONFRAG_IPV4_TCP:
-               attributes->l4.tcp.hdr = (struct rte_tcp_hdr){
-                       .src_port = input->flow.tcp4_flow.src_port,
-                       .dst_port = input->flow.tcp4_flow.dst_port,
-               };
-               attributes->l4_mask.tcp.hdr = (struct rte_tcp_hdr){
-                       .src_port = mask->src_port_mask,
-                       .dst_port = mask->dst_port_mask,
-               };
-               attributes->items[2] = (struct rte_flow_item){
-                       .type = RTE_FLOW_ITEM_TYPE_TCP,
-                       .spec = &attributes->l4,
-                       .mask = &attributes->l4_mask,
-               };
-               break;
-       case RTE_ETH_FLOW_NONFRAG_IPV6_UDP:
-               attributes->l4.udp.hdr = (struct rte_udp_hdr){
-                       .src_port = input->flow.udp6_flow.src_port,
-                       .dst_port = input->flow.udp6_flow.dst_port,
-               };
-               attributes->l4_mask.udp.hdr = (struct rte_udp_hdr){
-                       .src_port = mask->src_port_mask,
-                       .dst_port = mask->dst_port_mask,
-               };
-               attributes->items[2] = (struct rte_flow_item){
-                       .type = RTE_FLOW_ITEM_TYPE_UDP,
-                       .spec = &attributes->l4,
-                       .mask = &attributes->l4_mask,
-               };
-               break;
-       case RTE_ETH_FLOW_NONFRAG_IPV6_TCP:
-               attributes->l4.tcp.hdr = (struct rte_tcp_hdr){
-                       .src_port = input->flow.tcp6_flow.src_port,
-                       .dst_port = input->flow.tcp6_flow.dst_port,
-               };
-               attributes->l4_mask.tcp.hdr = (struct rte_tcp_hdr){
-                       .src_port = mask->src_port_mask,
-                       .dst_port = mask->dst_port_mask,
-               };
-               attributes->items[2] = (struct rte_flow_item){
-                       .type = RTE_FLOW_ITEM_TYPE_TCP,
-                       .spec = &attributes->l4,
-                       .mask = &attributes->l4_mask,
-               };
-               break;
-       case RTE_ETH_FLOW_NONFRAG_IPV4_OTHER:
-       case RTE_ETH_FLOW_NONFRAG_IPV6_OTHER:
-               break;
-       default:
-               DRV_LOG(ERR, "port %u invalid flow type%d",
-                       dev->data->port_id, fdir_filter->input.flow_type);
-               rte_errno = ENOTSUP;
-               return -rte_errno;
-       }
-       return 0;
-}
-
-#define FLOW_FDIR_CMP(f1, f2, fld) \
-       memcmp(&(f1)->fld, &(f2)->fld, sizeof(f1->fld))
-
-/**
- * Compare two FDIR flows. If items and actions are identical, the two flows are
- * regarded as same.
- *
- * @param dev
- *   Pointer to Ethernet device.
- * @param f1
- *   FDIR flow to compare.
- * @param f2
- *   FDIR flow to compare.
- *
- * @return
- *   Zero on match, 1 otherwise.
- */
-static int
-flow_fdir_cmp(const struct mlx5_fdir *f1, const struct mlx5_fdir *f2)
-{
-       if (FLOW_FDIR_CMP(f1, f2, attr) ||
-           FLOW_FDIR_CMP(f1, f2, l2) ||
-           FLOW_FDIR_CMP(f1, f2, l2_mask) ||
-           FLOW_FDIR_CMP(f1, f2, l3) ||
-           FLOW_FDIR_CMP(f1, f2, l3_mask) ||
-           FLOW_FDIR_CMP(f1, f2, l4) ||
-           FLOW_FDIR_CMP(f1, f2, l4_mask) ||
-           FLOW_FDIR_CMP(f1, f2, actions[0].type))
-               return 1;
-       if (f1->actions[0].type == RTE_FLOW_ACTION_TYPE_QUEUE &&
-           FLOW_FDIR_CMP(f1, f2, queue))
-               return 1;
-       return 0;
-}
-
-/**
- * Search device flow list to find out a matched FDIR flow.
- *
- * @param dev
- *   Pointer to Ethernet device.
- * @param fdir_flow
- *   FDIR flow to lookup.
- *
- * @return
- *   Index of flow if found, 0 otherwise.
- */
-static uint32_t
-flow_fdir_filter_lookup(struct rte_eth_dev *dev, struct mlx5_fdir *fdir_flow)
-{
-       struct mlx5_priv *priv = dev->data->dev_private;
-       uint32_t flow_idx = 0;
-       struct mlx5_fdir_flow *priv_fdir_flow = NULL;
-
-       MLX5_ASSERT(fdir_flow);
-       LIST_FOREACH(priv_fdir_flow, &priv->fdir_flows, next) {
-               if (!flow_fdir_cmp(priv_fdir_flow->fdir, fdir_flow)) {
-                       DRV_LOG(DEBUG, "port %u found FDIR flow %u",
-                               dev->data->port_id, flow_idx);
-                       flow_idx = priv_fdir_flow->rix_flow;
-                       break;
-               }
-       }
-       return flow_idx;
-}
-
-/**
- * Add new flow director filter and store it in list.
- *
- * @param dev
- *   Pointer to Ethernet device.
- * @param fdir_filter
- *   Flow director filter to add.
- *
- * @return
- *   0 on success, a negative errno value otherwise and rte_errno is set.
- */
-static int
-flow_fdir_filter_add(struct rte_eth_dev *dev,
-                    const struct rte_eth_fdir_filter *fdir_filter)
-{
-       struct mlx5_priv *priv = dev->data->dev_private;
-       struct mlx5_fdir *fdir_flow;
-       struct rte_flow *flow;
-       struct mlx5_fdir_flow *priv_fdir_flow = NULL;
-       uint32_t flow_idx;
-       int ret;
-
-       fdir_flow = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*fdir_flow), 0,
-                               SOCKET_ID_ANY);
-       if (!fdir_flow) {
-               rte_errno = ENOMEM;
-               return -rte_errno;
-       }
-       ret = flow_fdir_filter_convert(dev, fdir_filter, fdir_flow);
-       if (ret)
-               goto error;
-       flow_idx = flow_fdir_filter_lookup(dev, fdir_flow);
-       if (flow_idx) {
-               rte_errno = EEXIST;
-               goto error;
-       }
-       priv_fdir_flow = mlx5_malloc(MLX5_MEM_ZERO,
-                                    sizeof(struct mlx5_fdir_flow),
-                                    0, SOCKET_ID_ANY);
-       if (!priv_fdir_flow) {
-               rte_errno = ENOMEM;
-               goto error;
-       }
-       flow_idx = flow_list_create(dev, &priv->flows, &fdir_flow->attr,
-                                   fdir_flow->items, fdir_flow->actions, true,
-                                   NULL);
-       flow = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_RTE_FLOW], flow_idx);
-       if (!flow)
-               goto error;
-       flow->fdir = 1;
-       priv_fdir_flow->fdir = fdir_flow;
-       priv_fdir_flow->rix_flow = flow_idx;
-       LIST_INSERT_HEAD(&priv->fdir_flows, priv_fdir_flow, next);
-       DRV_LOG(DEBUG, "port %u created FDIR flow %p",
-               dev->data->port_id, (void *)flow);
-       return 0;
-error:
-       mlx5_free(priv_fdir_flow);
-       mlx5_free(fdir_flow);
-       return -rte_errno;
-}
-
-/**
- * Delete specific filter.
- *
- * @param dev
- *   Pointer to Ethernet device.
- * @param fdir_filter
- *   Filter to be deleted.
- *
- * @return
- *   0 on success, a negative errno value otherwise and rte_errno is set.
- */
-static int
-flow_fdir_filter_delete(struct rte_eth_dev *dev,
-                       const struct rte_eth_fdir_filter *fdir_filter)
-{
-       struct mlx5_priv *priv = dev->data->dev_private;
-       uint32_t flow_idx;
-       struct mlx5_fdir fdir_flow = {
-               .attr.group = 0,
-       };
-       struct mlx5_fdir_flow *priv_fdir_flow = NULL;
-       int ret;
-
-       ret = flow_fdir_filter_convert(dev, fdir_filter, &fdir_flow);
-       if (ret)
-               return -rte_errno;
-       LIST_FOREACH(priv_fdir_flow, &priv->fdir_flows, next) {
-               /* Find the fdir in priv list */
-               if (!flow_fdir_cmp(priv_fdir_flow->fdir, &fdir_flow))
-                       break;
-       }
-       if (!priv_fdir_flow)
-               return 0;
-       LIST_REMOVE(priv_fdir_flow, next);
-       flow_idx = priv_fdir_flow->rix_flow;
-       flow_list_destroy(dev, &priv->flows, flow_idx);
-       mlx5_free(priv_fdir_flow->fdir);
-       mlx5_free(priv_fdir_flow);
-       DRV_LOG(DEBUG, "port %u deleted FDIR flow %u",
-               dev->data->port_id, flow_idx);
-       return 0;
-}
-
-/**
- * Update queue for specific filter.
- *
- * @param dev
- *   Pointer to Ethernet device.
- * @param fdir_filter
- *   Filter to be updated.
- *
- * @return
- *   0 on success, a negative errno value otherwise and rte_errno is set.
- */
-static int
-flow_fdir_filter_update(struct rte_eth_dev *dev,
-                       const struct rte_eth_fdir_filter *fdir_filter)
-{
-       int ret;
-
-       ret = flow_fdir_filter_delete(dev, fdir_filter);
-       if (ret)
-               return ret;
-       return flow_fdir_filter_add(dev, fdir_filter);
-}
-
-/**
- * Flush all filters.
- *
- * @param dev
- *   Pointer to Ethernet device.
- */
-static void
-flow_fdir_filter_flush(struct rte_eth_dev *dev)
-{
-       struct mlx5_priv *priv = dev->data->dev_private;
-       struct mlx5_fdir_flow *priv_fdir_flow = NULL;
-
-       while (!LIST_EMPTY(&priv->fdir_flows)) {
-               priv_fdir_flow = LIST_FIRST(&priv->fdir_flows);
-               LIST_REMOVE(priv_fdir_flow, next);
-               flow_list_destroy(dev, &priv->flows, priv_fdir_flow->rix_flow);
-               mlx5_free(priv_fdir_flow->fdir);
-               mlx5_free(priv_fdir_flow);
-       }
-}
-
-/**
- * Get flow director information.
- *
- * @param dev
- *   Pointer to Ethernet device.
- * @param[out] fdir_info
- *   Resulting flow director information.
- */
-static void
-flow_fdir_info_get(struct rte_eth_dev *dev, struct rte_eth_fdir_info *fdir_info)
-{
-       struct rte_eth_fdir_masks *mask =
-               &dev->data->dev_conf.fdir_conf.mask;
-
-       fdir_info->mode = dev->data->dev_conf.fdir_conf.mode;
-       fdir_info->guarant_spc = 0;
-       rte_memcpy(&fdir_info->mask, mask, sizeof(fdir_info->mask));
-       fdir_info->max_flexpayload = 0;
-       fdir_info->flow_types_mask[0] = 0;
-       fdir_info->flex_payload_unit = 0;
-       fdir_info->max_flex_payload_segment_num = 0;
-       fdir_info->flex_payload_limit = 0;
-       memset(&fdir_info->flex_conf, 0, sizeof(fdir_info->flex_conf));
-}
-
-/**
- * Deal with flow director operations.
- *
- * @param dev
- *   Pointer to Ethernet device.
- * @param filter_op
- *   Operation to perform.
- * @param arg
- *   Pointer to operation-specific structure.
- *
- * @return
- *   0 on success, a negative errno value otherwise and rte_errno is set.
- */
-static int
-flow_fdir_ctrl_func(struct rte_eth_dev *dev, enum rte_filter_op filter_op,
-                   void *arg)
-{
-       enum rte_fdir_mode fdir_mode =
-               dev->data->dev_conf.fdir_conf.mode;
-
-       if (filter_op == RTE_ETH_FILTER_NOP)
-               return 0;
-       if (fdir_mode != RTE_FDIR_MODE_PERFECT &&
-           fdir_mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
-               DRV_LOG(ERR, "port %u flow director mode %d not supported",
-                       dev->data->port_id, fdir_mode);
-               rte_errno = EINVAL;
-               return -rte_errno;
-       }
-       switch (filter_op) {
-       case RTE_ETH_FILTER_ADD:
-               return flow_fdir_filter_add(dev, arg);
-       case RTE_ETH_FILTER_UPDATE:
-               return flow_fdir_filter_update(dev, arg);
-       case RTE_ETH_FILTER_DELETE:
-               return flow_fdir_filter_delete(dev, arg);
-       case RTE_ETH_FILTER_FLUSH:
-               flow_fdir_filter_flush(dev);
-               break;
-       case RTE_ETH_FILTER_INFO:
-               flow_fdir_info_get(dev, arg);
-               break;
-       default:
-               DRV_LOG(DEBUG, "port %u unknown operation %u",
-                       dev->data->port_id, filter_op);
-               rte_errno = EINVAL;
-               return -rte_errno;
-       }
-       return 0;
-}
-
 /**
  * Manage filter operations.
  *
@@ -6886,8 +6384,6 @@ mlx5_dev_filter_ctrl(struct rte_eth_dev *dev,
                }
                *(const void **)arg = &mlx5_flow_ops;
                return 0;
-       case RTE_ETH_FILTER_FDIR:
-               return flow_fdir_ctrl_func(dev, filter_op, arg);
        default:
                DRV_LOG(ERR, "port %u filter type (%d) not supported",
                        dev->data->port_id, filter_type);
@@ -7320,16 +6816,7 @@ mlx5_flow_aging_check(struct mlx5_dev_ctx_shared *sh,
                }
                rte_spinlock_unlock(&age_info->aged_sl);
        }
-       for (i = 0; i < sh->max_port; i++) {
-               age_info = &sh->port[i].age_info;
-               if (!MLX5_AGE_GET(age_info, MLX5_AGE_EVENT_NEW))
-                       continue;
-               if (MLX5_AGE_GET(age_info, MLX5_AGE_TRIGGER))
-                       rte_eth_dev_callback_process
-                               (&rte_eth_devices[sh->port[i].devx_ih_port_id],
-                               RTE_ETH_EVENT_FLOW_AGED, NULL);
-               age_info->flags = 0;
-       }
+       mlx5_age_event_prepare(sh);
 }
 
 /**
@@ -7399,13 +6886,56 @@ tunnel_mark_decode(struct rte_eth_dev *dev, uint32_t mark)
               container_of(he, struct mlx5_flow_tbl_data_entry, entry) : NULL;
 }
 
+static void
+mlx5_flow_tunnel_grp2tbl_remove_cb(struct mlx5_hlist *list,
+                                  struct mlx5_hlist_entry *entry)
+{
+       struct mlx5_dev_ctx_shared *sh = list->ctx;
+       struct tunnel_tbl_entry *tte = container_of(entry, typeof(*tte), hash);
+
+       mlx5_ipool_free(sh->ipool[MLX5_IPOOL_TNL_TBL_ID],
+                       tunnel_flow_tbl_to_id(tte->flow_table));
+       mlx5_free(tte);
+}
+
+static struct mlx5_hlist_entry *
+mlx5_flow_tunnel_grp2tbl_create_cb(struct mlx5_hlist *list,
+                                  uint64_t key __rte_unused,
+                                  void *ctx __rte_unused)
+{
+       struct mlx5_dev_ctx_shared *sh = list->ctx;
+       struct tunnel_tbl_entry *tte;
+
+       tte = mlx5_malloc(MLX5_MEM_SYS | MLX5_MEM_ZERO,
+                         sizeof(*tte), 0,
+                         SOCKET_ID_ANY);
+       if (!tte)
+               goto err;
+       mlx5_ipool_malloc(sh->ipool[MLX5_IPOOL_TNL_TBL_ID],
+                         &tte->flow_table);
+       if (tte->flow_table >= MLX5_MAX_TABLES) {
+               DRV_LOG(ERR, "Tunnel TBL ID %d exceed max limit.",
+                       tte->flow_table);
+               mlx5_ipool_free(sh->ipool[MLX5_IPOOL_TNL_TBL_ID],
+                               tte->flow_table);
+               goto err;
+       } else if (!tte->flow_table) {
+               goto err;
+       }
+       tte->flow_table = tunnel_id_to_flow_tbl(tte->flow_table);
+       return &tte->hash;
+err:
+       if (tte)
+               mlx5_free(tte);
+       return NULL;
+}
+
 static uint32_t
 tunnel_flow_group_to_flow_table(struct rte_eth_dev *dev,
                                const struct mlx5_flow_tunnel *tunnel,
                                uint32_t group, uint32_t *table,
                                struct rte_flow_error *error)
 {
-       struct mlx5_priv *priv = dev->data->dev_private;
        struct mlx5_hlist_entry *he;
        struct tunnel_tbl_entry *tte;
        union tunnel_tbl_key key = {
@@ -7416,40 +6946,17 @@ tunnel_flow_group_to_flow_table(struct rte_eth_dev *dev,
        struct mlx5_hlist *group_hash;
 
        group_hash = tunnel ? tunnel->groups : thub->groups;
-       he = mlx5_hlist_lookup(group_hash, key.val, NULL);
-       if (!he) {
-               tte = mlx5_malloc(MLX5_MEM_SYS | MLX5_MEM_ZERO,
-                                 sizeof(*tte), 0,
-                                 SOCKET_ID_ANY);
-               if (!tte)
-                       goto err;
-               tte->hash.key = key.val;
-               mlx5_ipool_malloc(priv->sh->ipool[MLX5_IPOOL_TNL_TBL_ID],
-                                 &tte->flow_table);
-               if (tte->flow_table >= MLX5_MAX_TABLES) {
-                       DRV_LOG(ERR, "Tunnel TBL ID %d exceed max limit.",
-                               tte->flow_table);
-                       mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_TNL_TBL_ID],
-                                       tte->flow_table);
-                       goto err;
-               } else if (!tte->flow_table) {
-                       goto err;
-               }
-               tte->flow_table = tunnel_id_to_flow_tbl(tte->flow_table);
-               mlx5_hlist_insert(group_hash, &tte->hash);
-       } else {
-               tte = container_of(he, typeof(*tte), hash);
-       }
+       he = mlx5_hlist_register(group_hash, key.val, NULL);
+       if (!he)
+               return rte_flow_error_set(error, EINVAL,
+                                         RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
+                                         NULL,
+                                         "tunnel group index not supported");
+       tte = container_of(he, typeof(*tte), hash);
        *table = tte->flow_table;
        DRV_LOG(DEBUG, "port %u tunnel %u group=%#x table=%#x",
                dev->data->port_id, key.tunnel_id, group, *table);
        return 0;
-
-err:
-       if (tte)
-               mlx5_free(tte);
-       return rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
-                                 NULL, "tunnel group index not supported");
 }
 
 static int
@@ -7920,7 +7427,6 @@ mlx5_flow_tunnel_free(struct rte_eth_dev *dev,
        DRV_LOG(DEBUG, "port %u release pmd tunnel id=0x%x",
                dev->data->port_id, tunnel->tunnel_id);
        RTE_VERIFY(!__atomic_load_n(&tunnel->refctn, __ATOMIC_RELAXED));
-       LIST_REMOVE(tunnel, chain);
        mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_TUNNEL_ID],
                        tunnel->tunnel_id);
        mlx5_hlist_destroy(tunnel->groups);
@@ -7972,13 +7478,16 @@ mlx5_flow_tunnel_allocate(struct rte_eth_dev *dev,
                return NULL;
        }
        tunnel->groups = mlx5_hlist_create("tunnel groups", 1024, 0, 0,
-                                          NULL, NULL, NULL);
+                                          mlx5_flow_tunnel_grp2tbl_create_cb,
+                                          NULL,
+                                          mlx5_flow_tunnel_grp2tbl_remove_cb);
        if (!tunnel->groups) {
                mlx5_ipool_free(priv->sh->ipool
                                [MLX5_IPOOL_RSS_EXPANTION_FLOW_ID], id);
                mlx5_free(tunnel);
                return NULL;
        }
+       tunnel->groups->ctx = priv->sh;
        /* initiate new PMD tunnel */
        memcpy(&tunnel->app_tunnel, app_tunnel, sizeof(*app_tunnel));
        tunnel->tunnel_id = id;
@@ -8006,6 +7515,7 @@ mlx5_get_flow_tunnel(struct rte_eth_dev *dev,
        struct mlx5_flow_tunnel_hub *thub = mlx5_tunnel_hub(dev);
        struct mlx5_flow_tunnel *tun;
 
+       rte_spinlock_lock(&thub->sl);
        LIST_FOREACH(tun, &thub->tunnels, chain) {
                if (!memcmp(app_tunnel, &tun->app_tunnel,
                            sizeof(*app_tunnel))) {
@@ -8023,6 +7533,7 @@ mlx5_get_flow_tunnel(struct rte_eth_dev *dev,
                        ret = -ENOMEM;
                }
        }
+       rte_spinlock_unlock(&thub->sl);
        if (tun)
                __atomic_add_fetch(&tun->refctn, 1, __ATOMIC_RELAXED);
 
@@ -8051,12 +7562,16 @@ int mlx5_alloc_tunnel_hub(struct mlx5_dev_ctx_shared *sh)
        if (!thub)
                return -ENOMEM;
        LIST_INIT(&thub->tunnels);
+       rte_spinlock_init(&thub->sl);
        thub->groups = mlx5_hlist_create("flow groups", MLX5_MAX_TABLES, 0,
-                                        0, NULL, NULL, NULL);
+                                        0, mlx5_flow_tunnel_grp2tbl_create_cb,
+                                        NULL,
+                                        mlx5_flow_tunnel_grp2tbl_remove_cb);
        if (!thub->groups) {
                err = -rte_errno;
                goto err;
        }
+       thub->groups->ctx = sh;
        sh->tunnel_hub = thub;
 
        return 0;