net/mlx5: make flow table cache thread safe
[dpdk.git] / drivers / net / mlx5 / mlx5_flow_dv.c
index 62e1d19..4c9e45f 100644 (file)
@@ -33,6 +33,7 @@
 #include "mlx5_flow.h"
 #include "mlx5_flow_os.h"
 #include "mlx5_rxtx.h"
+#include "rte_pmd_mlx5.h"
 
 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
 
@@ -73,9 +74,6 @@ static int
 flow_dv_tbl_resource_release(struct rte_eth_dev *dev,
                             struct mlx5_flow_tbl_resource *tbl);
 
-static int
-flow_dv_default_miss_resource_release(struct rte_eth_dev *dev);
-
 static int
 flow_dv_encap_decap_resource_release(struct rte_eth_dev *dev,
                                      uint32_t encap_decap_idx);
@@ -1676,6 +1674,7 @@ flow_dv_validate_item_vlan(const struct rte_flow_item *item,
        const struct rte_flow_item_vlan nic_mask = {
                .tci = RTE_BE16(UINT16_MAX),
                .inner_type = RTE_BE16(UINT16_MAX),
+               .has_more_vlan = 1,
        };
        const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
        int ret;
@@ -2872,8 +2871,10 @@ flow_dv_encap_decap_resource_register
                        struct mlx5_flow_dv_encap_decap_resource, entry);
                DRV_LOG(DEBUG, "encap/decap resource %p: refcnt %d++",
                        (void *)cache_resource,
-                       rte_atomic32_read(&cache_resource->refcnt));
-               rte_atomic32_inc(&cache_resource->refcnt);
+                       __atomic_load_n(&cache_resource->refcnt,
+                                       __ATOMIC_RELAXED));
+               __atomic_fetch_add(&cache_resource->refcnt, 1,
+                                  __ATOMIC_RELAXED);
                dev_flow->handle->dvh.rix_encap_decap = cache_resource->idx;
                dev_flow->dv.encap_decap = cache_resource;
                return 0;
@@ -2896,8 +2897,7 @@ flow_dv_encap_decap_resource_register
                                          RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
                                          NULL, "cannot create action");
        }
-       rte_atomic32_init(&cache_resource->refcnt);
-       rte_atomic32_inc(&cache_resource->refcnt);
+       __atomic_store_n(&cache_resource->refcnt, 1, __ATOMIC_RELAXED);
        if (mlx5_hlist_insert_ex(sh->encaps_decaps, &cache_resource->entry,
                                 flow_dv_encap_decap_resource_match,
                                 (void *)cache_resource)) {
@@ -2912,7 +2912,7 @@ flow_dv_encap_decap_resource_register
        dev_flow->dv.encap_decap = cache_resource;
        DRV_LOG(DEBUG, "new encap/decap resource %p: refcnt %d++",
                (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
+               __atomic_load_n(&cache_resource->refcnt, __ATOMIC_RELAXED));
        return 0;
 }
 
@@ -2936,72 +2936,18 @@ flow_dv_jump_tbl_resource_register
                        (struct rte_eth_dev *dev __rte_unused,
                         struct mlx5_flow_tbl_resource *tbl,
                         struct mlx5_flow *dev_flow,
-                        struct rte_flow_error *error)
+                        struct rte_flow_error *error __rte_unused)
 {
        struct mlx5_flow_tbl_data_entry *tbl_data =
                container_of(tbl, struct mlx5_flow_tbl_data_entry, tbl);
-       int cnt, ret;
 
        MLX5_ASSERT(tbl);
-       cnt = rte_atomic32_read(&tbl_data->jump.refcnt);
-       if (!cnt) {
-               ret = mlx5_flow_os_create_flow_action_dest_flow_tbl
-                               (tbl->obj, &tbl_data->jump.action);
-               if (ret)
-                       return rte_flow_error_set(error, ENOMEM,
-                                       RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
-                                       NULL, "cannot create jump action");
-               DRV_LOG(DEBUG, "new jump table resource %p: refcnt %d++",
-                       (void *)&tbl_data->jump, cnt);
-       } else {
-               /* old jump should not make the table ref++. */
-               flow_dv_tbl_resource_release(dev, &tbl_data->tbl);
-               MLX5_ASSERT(tbl_data->jump.action);
-               DRV_LOG(DEBUG, "existed jump table resource %p: refcnt %d++",
-                       (void *)&tbl_data->jump, cnt);
-       }
-       rte_atomic32_inc(&tbl_data->jump.refcnt);
+       MLX5_ASSERT(tbl_data->jump.action);
        dev_flow->handle->rix_jump = tbl_data->idx;
        dev_flow->dv.jump = &tbl_data->jump;
        return 0;
 }
 
-/**
- * Find existing default miss resource or create and register a new one.
- *
- * @param[in, out] dev
- *   Pointer to rte_eth_dev structure.
- * @param[out] error
- *   pointer to error structure.
- *
- * @return
- *   0 on success otherwise -errno and errno is set.
- */
-static int
-flow_dv_default_miss_resource_register(struct rte_eth_dev *dev,
-               struct rte_flow_error *error)
-{
-       struct mlx5_priv *priv = dev->data->dev_private;
-       struct mlx5_dev_ctx_shared *sh = priv->sh;
-       struct mlx5_flow_default_miss_resource *cache_resource =
-                       &sh->default_miss;
-       int cnt = rte_atomic32_read(&cache_resource->refcnt);
-
-       if (!cnt) {
-               MLX5_ASSERT(cache_resource->action);
-               cache_resource->action =
-               mlx5_glue->dr_create_flow_action_default_miss();
-               if (!cache_resource->action)
-                       return rte_flow_error_set(error, ENOMEM,
-                                       RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
-                                       "cannot create default miss action");
-               DRV_LOG(DEBUG, "new default miss resource %p: refcnt %d++",
-                               (void *)cache_resource->action, cnt);
-       }
-       rte_atomic32_inc(&cache_resource->refcnt);
-       return 0;
-}
-
 /**
  * Find existing table port ID resource or create and register a new one.
  *
@@ -3037,8 +2983,10 @@ flow_dv_port_id_action_resource_register
                        DRV_LOG(DEBUG, "port id action resource resource %p: "
                                "refcnt %d++",
                                (void *)cache_resource,
-                               rte_atomic32_read(&cache_resource->refcnt));
-                       rte_atomic32_inc(&cache_resource->refcnt);
+                               __atomic_load_n(&cache_resource->refcnt,
+                                               __ATOMIC_RELAXED));
+                       __atomic_fetch_add(&cache_resource->refcnt, 1,
+                                          __ATOMIC_RELAXED);
                        dev_flow->handle->rix_port_id_action = idx;
                        dev_flow->dv.port_id_action = cache_resource;
                        return 0;
@@ -3061,15 +3009,14 @@ flow_dv_port_id_action_resource_register
                                          RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
                                          NULL, "cannot create action");
        }
-       rte_atomic32_init(&cache_resource->refcnt);
-       rte_atomic32_inc(&cache_resource->refcnt);
+       __atomic_store_n(&cache_resource->refcnt, 1, __ATOMIC_RELAXED);
        ILIST_INSERT(sh->ipool[MLX5_IPOOL_PORT_ID], &sh->port_id_action_list,
                     dev_flow->handle->rix_port_id_action, cache_resource,
                     next);
        dev_flow->dv.port_id_action = cache_resource;
        DRV_LOG(DEBUG, "new port id action resource %p: refcnt %d++",
                (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
+               __atomic_load_n(&cache_resource->refcnt, __ATOMIC_RELAXED));
        return 0;
 }
 
@@ -3110,8 +3057,10 @@ flow_dv_push_vlan_action_resource_register
                        DRV_LOG(DEBUG, "push-VLAN action resource resource %p: "
                                "refcnt %d++",
                                (void *)cache_resource,
-                               rte_atomic32_read(&cache_resource->refcnt));
-                       rte_atomic32_inc(&cache_resource->refcnt);
+                               __atomic_load_n(&cache_resource->refcnt,
+                                               __ATOMIC_RELAXED));
+                       __atomic_fetch_add(&cache_resource->refcnt, 1,
+                                          __ATOMIC_RELAXED);
                        dev_flow->handle->dvh.rix_push_vlan = idx;
                        dev_flow->dv.push_vlan_res = cache_resource;
                        return 0;
@@ -3140,8 +3089,7 @@ flow_dv_push_vlan_action_resource_register
                                          RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
                                          NULL, "cannot create action");
        }
-       rte_atomic32_init(&cache_resource->refcnt);
-       rte_atomic32_inc(&cache_resource->refcnt);
+       __atomic_store_n(&cache_resource->refcnt, 1, __ATOMIC_RELAXED);
        ILIST_INSERT(sh->ipool[MLX5_IPOOL_PUSH_VLAN],
                     &sh->push_vlan_action_list,
                     dev_flow->handle->dvh.rix_push_vlan,
@@ -3149,7 +3097,7 @@ flow_dv_push_vlan_action_resource_register
        dev_flow->dv.push_vlan_res = cache_resource;
        DRV_LOG(DEBUG, "new push vlan action resource %p: refcnt %d++",
                (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
+               __atomic_load_n(&cache_resource->refcnt, __ATOMIC_RELAXED));
        return 0;
 }
 /**
@@ -4549,8 +4497,10 @@ flow_dv_modify_hdr_resource_register
                                        entry);
                DRV_LOG(DEBUG, "modify-header resource %p: refcnt %d++",
                        (void *)cache_resource,
-                       rte_atomic32_read(&cache_resource->refcnt));
-               rte_atomic32_inc(&cache_resource->refcnt);
+                       __atomic_load_n(&cache_resource->refcnt,
+                                       __ATOMIC_RELAXED));
+               __atomic_fetch_add(&cache_resource->refcnt, 1,
+                                  __ATOMIC_RELAXED);
                dev_flow->handle->dvh.modify_hdr = cache_resource;
                return 0;
 
@@ -4574,8 +4524,7 @@ flow_dv_modify_hdr_resource_register
                                          RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
                                          NULL, "cannot create action");
        }
-       rte_atomic32_init(&cache_resource->refcnt);
-       rte_atomic32_inc(&cache_resource->refcnt);
+       __atomic_store_n(&cache_resource->refcnt, 1, __ATOMIC_RELAXED);
        if (mlx5_hlist_insert_ex(sh->modify_cmds, &cache_resource->entry,
                                 flow_dv_modify_hdr_resource_match,
                                 (void *)cache_resource)) {
@@ -4589,7 +4538,7 @@ flow_dv_modify_hdr_resource_register
        dev_flow->handle->dvh.modify_hdr = cache_resource;
        DRV_LOG(DEBUG, "new modify-header resource %p: refcnt %d++",
                (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
+               __atomic_load_n(&cache_resource->refcnt, __ATOMIC_RELAXED));
        return 0;
 }
 
@@ -5359,7 +5308,7 @@ flow_dv_validate(struct rte_eth_dev *dev, const struct rte_flow_attr *attr,
                        break;
                case RTE_FLOW_ITEM_TYPE_ETH:
                        ret = mlx5_flow_validate_item_eth(items, item_flags,
-                                                         error);
+                                                         true, error);
                        if (ret < 0)
                                return ret;
                        last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L2 :
@@ -6247,9 +6196,11 @@ flow_dv_prepare(struct rte_eth_dev *dev,
        struct mlx5_flow *dev_flow;
        struct mlx5_flow_handle *dev_handle;
        struct mlx5_priv *priv = dev->data->dev_private;
+       struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
 
+       MLX5_ASSERT(wks);
        /* In case of corrupting the memory. */
-       if (priv->flow_idx >= MLX5_NUM_MAX_DEV_FLOWS) {
+       if (wks->flow_idx >= MLX5_NUM_MAX_DEV_FLOWS) {
                rte_flow_error_set(error, ENOSPC,
                                   RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
                                   "not free temporary device flow");
@@ -6263,8 +6214,8 @@ flow_dv_prepare(struct rte_eth_dev *dev,
                                   "not enough memory to create flow handle");
                return NULL;
        }
-       /* No multi-thread supporting. */
-       dev_flow = &((struct mlx5_flow *)priv->inter_flows)[priv->flow_idx++];
+       MLX5_ASSERT(wks->flow_idx + 1 < RTE_DIM(wks->flows));
+       dev_flow = &wks->flows[wks->flow_idx++];
        dev_flow->handle = dev_handle;
        dev_flow->handle_idx = handle_idx;
        /*
@@ -6371,9 +6322,10 @@ flow_dv_translate_item_eth(void *matcher, void *key,
                .dst.addr_bytes = "\xff\xff\xff\xff\xff\xff",
                .src.addr_bytes = "\xff\xff\xff\xff\xff\xff",
                .type = RTE_BE16(0xffff),
+               .has_vlan = 0,
        };
-       void *headers_m;
-       void *headers_v;
+       void *hdrs_m;
+       void *hdrs_v;
        char *l24_v;
        unsigned int i;
 
@@ -6382,38 +6334,26 @@ flow_dv_translate_item_eth(void *matcher, void *key,
        if (!eth_m)
                eth_m = &nic_mask;
        if (inner) {
-               headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
+               hdrs_m = MLX5_ADDR_OF(fte_match_param, matcher,
                                         inner_headers);
-               headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
+               hdrs_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
        } else {
-               headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
+               hdrs_m = MLX5_ADDR_OF(fte_match_param, matcher,
                                         outer_headers);
-               headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
+               hdrs_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
        }
-       memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m, dmac_47_16),
+       memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_m, dmac_47_16),
               &eth_m->dst, sizeof(eth_m->dst));
        /* The value must be in the range of the mask. */
-       l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v, dmac_47_16);
+       l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_v, dmac_47_16);
        for (i = 0; i < sizeof(eth_m->dst); ++i)
                l24_v[i] = eth_m->dst.addr_bytes[i] & eth_v->dst.addr_bytes[i];
-       memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m, smac_47_16),
+       memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_m, smac_47_16),
               &eth_m->src, sizeof(eth_m->src));
-       l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v, smac_47_16);
+       l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_v, smac_47_16);
        /* The value must be in the range of the mask. */
        for (i = 0; i < sizeof(eth_m->dst); ++i)
                l24_v[i] = eth_m->src.addr_bytes[i] & eth_v->src.addr_bytes[i];
-       if (eth_v->type) {
-               /* When ethertype is present set mask for tagged VLAN. */
-               MLX5_SET(fte_match_set_lyr_2_4, headers_m, cvlan_tag, 1);
-               /* Set value for tagged VLAN if ethertype is 802.1Q. */
-               if (eth_v->type == RTE_BE16(RTE_ETHER_TYPE_VLAN) ||
-                   eth_v->type == RTE_BE16(RTE_ETHER_TYPE_QINQ)) {
-                       MLX5_SET(fte_match_set_lyr_2_4, headers_v, cvlan_tag,
-                                1);
-                       /* Return here to avoid setting match on ethertype. */
-                       return;
-               }
-       }
        /*
         * HW supports match on one Ethertype, the Ethertype following the last
         * VLAN tag of the packet (see PRM).
@@ -6422,19 +6362,42 @@ flow_dv_translate_item_eth(void *matcher, void *key,
         * ethertype, and use ip_version field instead.
         * eCPRI over Ether layer will use type value 0xAEFE.
         */
-       if (eth_v->type == RTE_BE16(RTE_ETHER_TYPE_IPV4) &&
-           eth_m->type == 0xFFFF) {
-               flow_dv_set_match_ip_version(group, headers_v, headers_m, 4);
-       } else if (eth_v->type == RTE_BE16(RTE_ETHER_TYPE_IPV6) &&
-                  eth_m->type == 0xFFFF) {
-               flow_dv_set_match_ip_version(group, headers_v, headers_m, 6);
-       } else {
-               MLX5_SET(fte_match_set_lyr_2_4, headers_m, ethertype,
-                        rte_be_to_cpu_16(eth_m->type));
-               l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
-                                    ethertype);
-               *(uint16_t *)(l24_v) = eth_m->type & eth_v->type;
+       if (eth_m->type == 0xFFFF) {
+               /* Set cvlan_tag mask for any single\multi\un-tagged case. */
+               MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, cvlan_tag, 1);
+               switch (eth_v->type) {
+               case RTE_BE16(RTE_ETHER_TYPE_VLAN):
+                       MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 1);
+                       return;
+               case RTE_BE16(RTE_ETHER_TYPE_QINQ):
+                       MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, svlan_tag, 1);
+                       MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, svlan_tag, 1);
+                       return;
+               case RTE_BE16(RTE_ETHER_TYPE_IPV4):
+                       flow_dv_set_match_ip_version(group, hdrs_v, hdrs_m, 4);
+                       return;
+               case RTE_BE16(RTE_ETHER_TYPE_IPV6):
+                       flow_dv_set_match_ip_version(group, hdrs_v, hdrs_m, 6);
+                       return;
+               default:
+                       break;
+               }
        }
+       if (eth_m->has_vlan) {
+               MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, cvlan_tag, 1);
+               if (eth_v->has_vlan) {
+                       /*
+                        * Here, when also has_more_vlan field in VLAN item is
+                        * not set, only single-tagged packets will be matched.
+                        */
+                       MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 1);
+                       return;
+               }
+       }
+       MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, ethertype,
+                rte_be_to_cpu_16(eth_m->type));
+       l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_v, ethertype);
+       *(uint16_t *)(l24_v) = eth_m->type & eth_v->type;
 }
 
 /**
@@ -6459,19 +6422,19 @@ flow_dv_translate_item_vlan(struct mlx5_flow *dev_flow,
 {
        const struct rte_flow_item_vlan *vlan_m = item->mask;
        const struct rte_flow_item_vlan *vlan_v = item->spec;
-       void *headers_m;
-       void *headers_v;
+       void *hdrs_m;
+       void *hdrs_v;
        uint16_t tci_m;
        uint16_t tci_v;
 
        if (inner) {
-               headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
+               hdrs_m = MLX5_ADDR_OF(fte_match_param, matcher,
                                         inner_headers);
-               headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
+               hdrs_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
        } else {
-               headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
+               hdrs_m = MLX5_ADDR_OF(fte_match_param, matcher,
                                         outer_headers);
-               headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
+               hdrs_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
                /*
                 * This is workaround, masks are not supported,
                 * and pre-validated.
@@ -6484,37 +6447,54 @@ flow_dv_translate_item_vlan(struct mlx5_flow *dev_flow,
         * When VLAN item exists in flow, mark packet as tagged,
         * even if TCI is not specified.
         */
-       MLX5_SET(fte_match_set_lyr_2_4, headers_m, cvlan_tag, 1);
-       MLX5_SET(fte_match_set_lyr_2_4, headers_v, cvlan_tag, 1);
+       if (!MLX5_GET(fte_match_set_lyr_2_4, hdrs_v, svlan_tag)) {
+               MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, cvlan_tag, 1);
+               MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 1);
+       }
        if (!vlan_v)
                return;
        if (!vlan_m)
                vlan_m = &rte_flow_item_vlan_mask;
        tci_m = rte_be_to_cpu_16(vlan_m->tci);
        tci_v = rte_be_to_cpu_16(vlan_m->tci & vlan_v->tci);
-       MLX5_SET(fte_match_set_lyr_2_4, headers_m, first_vid, tci_m);
-       MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_vid, tci_v);
-       MLX5_SET(fte_match_set_lyr_2_4, headers_m, first_cfi, tci_m >> 12);
-       MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_cfi, tci_v >> 12);
-       MLX5_SET(fte_match_set_lyr_2_4, headers_m, first_prio, tci_m >> 13);
-       MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_prio, tci_v >> 13);
+       MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, first_vid, tci_m);
+       MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, first_vid, tci_v);
+       MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, first_cfi, tci_m >> 12);
+       MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, first_cfi, tci_v >> 12);
+       MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, first_prio, tci_m >> 13);
+       MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, first_prio, tci_v >> 13);
        /*
         * HW is optimized for IPv4/IPv6. In such cases, avoid setting
         * ethertype, and use ip_version field instead.
         */
-       if (vlan_v->inner_type == RTE_BE16(RTE_ETHER_TYPE_IPV4) &&
-           vlan_m->inner_type == 0xFFFF) {
-               flow_dv_set_match_ip_version(group, headers_v, headers_m, 4);
-       } else if (vlan_v->inner_type == RTE_BE16(RTE_ETHER_TYPE_IPV6) &&
-                  vlan_m->inner_type == 0xFFFF) {
-               flow_dv_set_match_ip_version(group, headers_v, headers_m, 6);
-       } else {
-               MLX5_SET(fte_match_set_lyr_2_4, headers_m, ethertype,
-                        rte_be_to_cpu_16(vlan_m->inner_type));
-               MLX5_SET(fte_match_set_lyr_2_4, headers_v, ethertype,
-                        rte_be_to_cpu_16(vlan_m->inner_type &
-                                         vlan_v->inner_type));
+       if (vlan_m->inner_type == 0xFFFF) {
+               switch (vlan_v->inner_type) {
+               case RTE_BE16(RTE_ETHER_TYPE_VLAN):
+                       MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, svlan_tag, 1);
+                       MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, svlan_tag, 1);
+                       MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 0);
+                       return;
+               case RTE_BE16(RTE_ETHER_TYPE_IPV4):
+                       flow_dv_set_match_ip_version(group, hdrs_v, hdrs_m, 4);
+                       return;
+               case RTE_BE16(RTE_ETHER_TYPE_IPV6):
+                       flow_dv_set_match_ip_version(group, hdrs_v, hdrs_m, 6);
+                       return;
+               default:
+                       break;
+               }
+       }
+       if (vlan_m->has_more_vlan && vlan_v->has_more_vlan) {
+               MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, svlan_tag, 1);
+               MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, svlan_tag, 1);
+               /* Only one vlan_tag bit can be set. */
+               MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 0);
+               return;
        }
+       MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, ethertype,
+                rte_be_to_cpu_16(vlan_m->inner_type));
+       MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, ethertype,
+                rte_be_to_cpu_16(vlan_m->inner_type & vlan_v->inner_type));
 }
 
 /**
@@ -6526,8 +6506,6 @@ flow_dv_translate_item_vlan(struct mlx5_flow *dev_flow,
  *   Flow matcher value.
  * @param[in] item
  *   Flow pattern to translate.
- * @param[in] item_flags
- *   Bit-fields that holds the items detected until now.
  * @param[in] inner
  *   Item is inner pattern.
  * @param[in] group
@@ -6536,7 +6514,6 @@ flow_dv_translate_item_vlan(struct mlx5_flow *dev_flow,
 static void
 flow_dv_translate_item_ipv4(void *matcher, void *key,
                            const struct rte_flow_item *item,
-                           const uint64_t item_flags,
                            int inner, uint32_t group)
 {
        const struct rte_flow_item_ipv4 *ipv4_m = item->mask;
@@ -6566,13 +6543,6 @@ flow_dv_translate_item_ipv4(void *matcher, void *key,
                headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
        }
        flow_dv_set_match_ip_version(group, headers_v, headers_m, 4);
-       /*
-        * On outer header (which must contains L2), or inner header with L2,
-        * set cvlan_tag mask bit to mark this packet as untagged.
-        * This should be done even if item->spec is empty.
-        */
-       if (!inner || item_flags & MLX5_FLOW_LAYER_INNER_L2)
-               MLX5_SET(fte_match_set_lyr_2_4, headers_m, cvlan_tag, 1);
        if (!ipv4_v)
                return;
        if (!ipv4_m)
@@ -6619,8 +6589,6 @@ flow_dv_translate_item_ipv4(void *matcher, void *key,
  *   Flow matcher value.
  * @param[in] item
  *   Flow pattern to translate.
- * @param[in] item_flags
- *   Bit-fields that holds the items detected until now.
  * @param[in] inner
  *   Item is inner pattern.
  * @param[in] group
@@ -6629,7 +6597,6 @@ flow_dv_translate_item_ipv4(void *matcher, void *key,
 static void
 flow_dv_translate_item_ipv6(void *matcher, void *key,
                            const struct rte_flow_item *item,
-                           const uint64_t item_flags,
                            int inner, uint32_t group)
 {
        const struct rte_flow_item_ipv6 *ipv6_m = item->mask;
@@ -6668,13 +6635,6 @@ flow_dv_translate_item_ipv6(void *matcher, void *key,
                headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
        }
        flow_dv_set_match_ip_version(group, headers_v, headers_m, 6);
-       /*
-        * On outer header (which must contains L2), or inner header with L2,
-        * set cvlan_tag mask bit to mark this packet as untagged.
-        * This should be done even if item->spec is empty.
-        */
-       if (!inner || item_flags & MLX5_FLOW_LAYER_INNER_L2)
-               MLX5_SET(fte_match_set_lyr_2_4, headers_m, cvlan_tag, 1);
        if (!ipv6_v)
                return;
        if (!ipv6_m)
@@ -7962,6 +7922,66 @@ flow_dv_matcher_enable(uint32_t *match_criteria)
        return match_criteria_enable;
 }
 
+struct mlx5_hlist_entry *
+flow_dv_tbl_create_cb(struct mlx5_hlist *list, uint64_t key64, void *cb_ctx)
+{
+       struct mlx5_dev_ctx_shared *sh = list->ctx;
+       struct mlx5_flow_cb_ctx *ctx = cb_ctx;
+       struct rte_eth_dev *dev = ctx->dev;
+       struct mlx5_flow_tbl_data_entry *tbl_data;
+       struct mlx5_flow_tbl_tunnel_prm *tt_prm = ctx->data;
+       struct rte_flow_error *error = ctx->error;
+       union mlx5_flow_tbl_key key = { .v64 = key64 };
+       struct mlx5_flow_tbl_resource *tbl;
+       void *domain;
+       uint32_t idx = 0;
+       int ret;
+
+       tbl_data = mlx5_ipool_zmalloc(sh->ipool[MLX5_IPOOL_JUMP], &idx);
+       if (!tbl_data) {
+               rte_flow_error_set(error, ENOMEM,
+                                  RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
+                                  NULL,
+                                  "cannot allocate flow table data entry");
+               return NULL;
+       }
+       tbl_data->idx = idx;
+       tbl_data->tunnel = tt_prm->tunnel;
+       tbl_data->group_id = tt_prm->group_id;
+       tbl_data->external = tt_prm->external;
+       tbl_data->tunnel_offload = is_tunnel_offload_active(dev);
+       tbl = &tbl_data->tbl;
+       if (key.dummy)
+               return &tbl_data->entry;
+       if (key.domain)
+               domain = sh->fdb_domain;
+       else if (key.direction)
+               domain = sh->tx_domain;
+       else
+               domain = sh->rx_domain;
+       ret = mlx5_flow_os_create_flow_tbl(domain, key.table_id, &tbl->obj);
+       if (ret) {
+               rte_flow_error_set(error, ENOMEM,
+                                  RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
+                                  NULL, "cannot create flow table object");
+               mlx5_ipool_free(sh->ipool[MLX5_IPOOL_JUMP], idx);
+               return NULL;
+       }
+       if (key.table_id) {
+               ret = mlx5_flow_os_create_flow_action_dest_flow_tbl
+                                       (tbl->obj, &tbl_data->jump.action);
+               if (ret) {
+                       rte_flow_error_set(error, ENOMEM,
+                                          RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
+                                          NULL,
+                                          "cannot create flow jump action");
+                       mlx5_flow_os_destroy_flow_tbl(tbl->obj);
+                       mlx5_ipool_free(sh->ipool[MLX5_IPOOL_JUMP], idx);
+                       return NULL;
+               }
+       }
+       return &tbl_data->entry;
+}
 
 /**
  * Get a flow table.
@@ -7974,92 +7994,104 @@ flow_dv_matcher_enable(uint32_t *match_criteria)
  *   Direction of the table.
  * @param[in] transfer
  *   E-Switch or NIC flow.
+ * @param[in] dummy
+ *   Dummy entry for dv API.
  * @param[out] error
  *   pointer to error structure.
  *
  * @return
  *   Returns tables resource based on the index, NULL in case of failed.
  */
-static struct mlx5_flow_tbl_resource *
+struct mlx5_flow_tbl_resource *
 flow_dv_tbl_resource_get(struct rte_eth_dev *dev,
                         uint32_t table_id, uint8_t egress,
                         uint8_t transfer,
                         bool external,
                         const struct mlx5_flow_tunnel *tunnel,
-                        uint32_t group_id,
+                        uint32_t group_id, uint8_t dummy,
                         struct rte_flow_error *error)
 {
        struct mlx5_priv *priv = dev->data->dev_private;
-       struct mlx5_dev_ctx_shared *sh = priv->sh;
-       struct mlx5_flow_tbl_resource *tbl;
        union mlx5_flow_tbl_key table_key = {
                {
                        .table_id = table_id,
-                       .reserved = 0,
+                       .dummy = dummy,
                        .domain = !!transfer,
                        .direction = !!egress,
                }
        };
-       struct mlx5_hlist_entry *pos = mlx5_hlist_lookup(sh->flow_tbls,
-                                                        table_key.v64);
+       struct mlx5_flow_tbl_tunnel_prm tt_prm = {
+               .tunnel = tunnel,
+               .group_id = group_id,
+               .external = external,
+       };
+       struct mlx5_flow_cb_ctx ctx = {
+               .dev = dev,
+               .error = error,
+               .data = &tt_prm,
+       };
+       struct mlx5_hlist_entry *entry;
        struct mlx5_flow_tbl_data_entry *tbl_data;
-       uint32_t idx = 0;
-       int ret;
-       void *domain;
 
-       if (pos) {
-               tbl_data = container_of(pos, struct mlx5_flow_tbl_data_entry,
-                                       entry);
-               tbl = &tbl_data->tbl;
-               rte_atomic32_inc(&tbl->refcnt);
-               return tbl;
-       }
-       tbl_data = mlx5_ipool_zmalloc(sh->ipool[MLX5_IPOOL_JUMP], &idx);
-       if (!tbl_data) {
+       entry = mlx5_hlist_register(priv->sh->flow_tbls, table_key.v64, &ctx);
+       if (!entry) {
                rte_flow_error_set(error, ENOMEM,
-                                  RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
-                                  NULL,
-                                  "cannot allocate flow table data entry");
-               return NULL;
-       }
-       tbl_data->idx = idx;
-       tbl_data->tunnel = tunnel;
-       tbl_data->group_id = group_id;
-       tbl_data->external = external;
-       tbl = &tbl_data->tbl;
-       pos = &tbl_data->entry;
-       if (transfer)
-               domain = sh->fdb_domain;
-       else if (egress)
-               domain = sh->tx_domain;
-       else
-               domain = sh->rx_domain;
-       ret = mlx5_flow_os_create_flow_tbl(domain, table_id, &tbl->obj);
-       if (ret) {
-               rte_flow_error_set(error, ENOMEM,
-                                  RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
-                                  NULL, "cannot create flow table object");
-               mlx5_ipool_free(sh->ipool[MLX5_IPOOL_JUMP], idx);
+                                  RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
+                                  "cannot get table");
                return NULL;
        }
-       /*
-        * No multi-threads now, but still better to initialize the reference
-        * count before insert it into the hash list.
-        */
-       rte_atomic32_init(&tbl->refcnt);
-       /* Jump action reference count is initialized here. */
-       rte_atomic32_init(&tbl_data->jump.refcnt);
-       pos->key = table_key.v64;
-       ret = mlx5_hlist_insert(sh->flow_tbls, pos);
-       if (ret < 0) {
-               rte_flow_error_set(error, -ret,
-                                  RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
-                                  "cannot insert flow table data entry");
-               mlx5_flow_os_destroy_flow_tbl(tbl->obj);
-               mlx5_ipool_free(sh->ipool[MLX5_IPOOL_JUMP], idx);
+       tbl_data = container_of(entry, struct mlx5_flow_tbl_data_entry, entry);
+       return &tbl_data->tbl;
+}
+
+void
+flow_dv_tbl_remove_cb(struct mlx5_hlist *list,
+                     struct mlx5_hlist_entry *entry)
+{
+       struct mlx5_dev_ctx_shared *sh = list->ctx;
+       struct mlx5_flow_tbl_data_entry *tbl_data =
+               container_of(entry, struct mlx5_flow_tbl_data_entry, entry);
+
+       MLX5_ASSERT(entry && sh);
+       if (tbl_data->jump.action)
+               mlx5_flow_os_destroy_flow_action(tbl_data->jump.action);
+       if (tbl_data->tbl.obj)
+               mlx5_flow_os_destroy_flow_tbl(tbl_data->tbl.obj);
+       if (tbl_data->tunnel_offload && tbl_data->external) {
+               struct mlx5_hlist_entry *he;
+               struct mlx5_hlist *tunnel_grp_hash;
+               struct mlx5_flow_tunnel_hub *thub = sh->tunnel_hub;
+               union tunnel_tbl_key tunnel_key = {
+                       .tunnel_id = tbl_data->tunnel ?
+                                       tbl_data->tunnel->tunnel_id : 0,
+                       .group = tbl_data->group_id
+               };
+               union mlx5_flow_tbl_key table_key = {
+                       .v64 = entry->key
+               };
+               uint32_t table_id = table_key.table_id;
+
+               tunnel_grp_hash = tbl_data->tunnel ?
+                                       tbl_data->tunnel->groups :
+                                       thub->groups;
+               he = mlx5_hlist_lookup(tunnel_grp_hash, tunnel_key.val, NULL);
+               if (he) {
+                       struct tunnel_tbl_entry *tte;
+                       tte = container_of(he, typeof(*tte), hash);
+                       MLX5_ASSERT(tte->flow_table == table_id);
+                       mlx5_hlist_remove(tunnel_grp_hash, he);
+                       mlx5_free(tte);
+               }
+               mlx5_ipool_free(sh->ipool[MLX5_IPOOL_TNL_TBL_ID],
+                               tunnel_flow_tbl_to_id(table_id));
+               DRV_LOG(DEBUG,
+                       "Table_id %#x tunnel %u group %u released.",
+                       table_id,
+                       tbl_data->tunnel ?
+                       tbl_data->tunnel->tunnel_id : 0,
+                       tbl_data->group_id);
        }
-       rte_atomic32_inc(&tbl->refcnt);
-       return tbl;
+       mlx5_ipool_free(sh->ipool[MLX5_IPOOL_JUMP], tbl_data->idx);
 }
 
 /**
@@ -8084,53 +8116,7 @@ flow_dv_tbl_resource_release(struct rte_eth_dev *dev,
 
        if (!tbl)
                return 0;
-       if (rte_atomic32_dec_and_test(&tbl->refcnt)) {
-               struct mlx5_hlist_entry *pos = &tbl_data->entry;
-
-               mlx5_flow_os_destroy_flow_tbl(tbl->obj);
-               tbl->obj = NULL;
-               if (is_tunnel_offload_active(dev) && tbl_data->external) {
-                       struct mlx5_hlist_entry *he;
-                       struct mlx5_hlist *tunnel_grp_hash;
-                       struct mlx5_flow_tunnel_hub *thub =
-                                                       mlx5_tunnel_hub(dev);
-                       union tunnel_tbl_key tunnel_key = {
-                               .tunnel_id = tbl_data->tunnel ?
-                                               tbl_data->tunnel->tunnel_id : 0,
-                               .group = tbl_data->group_id
-                       };
-                       union mlx5_flow_tbl_key table_key = {
-                               .v64 = pos->key
-                       };
-                       uint32_t table_id = table_key.table_id;
-
-                       tunnel_grp_hash = tbl_data->tunnel ?
-                                               tbl_data->tunnel->groups :
-                                               thub->groups;
-                       he = mlx5_hlist_lookup(tunnel_grp_hash, tunnel_key.val);
-                       if (he) {
-                               struct tunnel_tbl_entry *tte;
-                               tte = container_of(he, typeof(*tte), hash);
-                               MLX5_ASSERT(tte->flow_table == table_id);
-                               mlx5_hlist_remove(tunnel_grp_hash, he);
-                               mlx5_free(tte);
-                       }
-                       mlx5_flow_id_release(mlx5_tunnel_hub(dev)->table_ids,
-                                            tunnel_flow_tbl_to_id(table_id));
-                       DRV_LOG(DEBUG,
-                               "port %u release table_id %#x tunnel %u group %u",
-                               dev->data->port_id, table_id,
-                               tbl_data->tunnel ?
-                               tbl_data->tunnel->tunnel_id : 0,
-                               tbl_data->group_id);
-               }
-               /* remove the entry from the hash list and free memory. */
-               mlx5_hlist_remove(sh->flow_tbls, pos);
-               mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_JUMP],
-                               tbl_data->idx);
-               return 0;
-       }
-       return 1;
+       return mlx5_hlist_unregister(sh->flow_tbls, &tbl_data->entry);
 }
 
 /**
@@ -8169,7 +8155,7 @@ flow_dv_matcher_register(struct rte_eth_dev *dev,
        int ret;
 
        tbl = flow_dv_tbl_resource_get(dev, key->table_id, key->direction,
-                                      key->domain, false, NULL, 0, error);
+                                      key->domain, false, NULL, 0, 0, error);
        if (!tbl)
                return -rte_errno;      /* No need to refill the error info */
        tbl_data = container_of(tbl, struct mlx5_flow_tbl_data_entry, tbl);
@@ -8187,8 +8173,10 @@ flow_dv_matcher_register(struct rte_eth_dev *dev,
                                cache_matcher->priority,
                                key->direction ? "tx" : "rx",
                                (void *)cache_matcher,
-                               rte_atomic32_read(&cache_matcher->refcnt));
-                       rte_atomic32_inc(&cache_matcher->refcnt);
+                               __atomic_load_n(&cache_matcher->refcnt,
+                                               __ATOMIC_RELAXED));
+                       __atomic_fetch_add(&cache_matcher->refcnt, 1,
+                                          __ATOMIC_RELAXED);
                        dev_flow->handle->dvh.matcher = cache_matcher;
                        /* old matcher should not make the table ref++. */
                        flow_dv_tbl_resource_release(dev, tbl);
@@ -8223,16 +8211,15 @@ flow_dv_matcher_register(struct rte_eth_dev *dev,
        }
        /* Save the table information */
        cache_matcher->tbl = tbl;
-       rte_atomic32_init(&cache_matcher->refcnt);
        /* only matcher ref++, table ref++ already done above in get API. */
-       rte_atomic32_inc(&cache_matcher->refcnt);
+       __atomic_store_n(&cache_matcher->refcnt, 1, __ATOMIC_RELAXED);
        LIST_INSERT_HEAD(&tbl_data->matchers, cache_matcher, next);
        dev_flow->handle->dvh.matcher = cache_matcher;
        DRV_LOG(DEBUG, "%s group %u priority %hd new %s matcher %p: refcnt %d",
                key->domain ? "FDB" : "NIC", key->table_id,
                cache_matcher->priority,
                key->direction ? "tx" : "rx", (void *)cache_matcher,
-               rte_atomic32_read(&cache_matcher->refcnt));
+               __atomic_load_n(&cache_matcher->refcnt, __ATOMIC_RELAXED));
        return 0;
 }
 
@@ -8265,16 +8252,18 @@ flow_dv_tag_resource_register
        int ret;
 
        /* Lookup a matching resource from cache. */
-       entry = mlx5_hlist_lookup(sh->tag_table, (uint64_t)tag_be24);
+       entry = mlx5_hlist_lookup(sh->tag_table, (uint64_t)tag_be24, NULL);
        if (entry) {
                cache_resource = container_of
                        (entry, struct mlx5_flow_dv_tag_resource, entry);
-               rte_atomic32_inc(&cache_resource->refcnt);
+               __atomic_fetch_add(&cache_resource->refcnt, 1,
+                                  __ATOMIC_RELAXED);
                dev_flow->handle->dvh.rix_tag = cache_resource->idx;
                dev_flow->dv.tag_resource = cache_resource;
                DRV_LOG(DEBUG, "cached tag resource %p: refcnt now %d++",
                        (void *)cache_resource,
-                       rte_atomic32_read(&cache_resource->refcnt));
+                       __atomic_load_n(&cache_resource->refcnt,
+                                       __ATOMIC_RELAXED));
                return 0;
        }
        /* Register new resource. */
@@ -8293,8 +8282,7 @@ flow_dv_tag_resource_register
                                          RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
                                          NULL, "cannot create action");
        }
-       rte_atomic32_init(&cache_resource->refcnt);
-       rte_atomic32_inc(&cache_resource->refcnt);
+       __atomic_store_n(&cache_resource->refcnt, 1, __ATOMIC_RELAXED);
        if (mlx5_hlist_insert(sh->tag_table, &cache_resource->entry)) {
                mlx5_flow_os_destroy_flow_action(cache_resource->action);
                mlx5_free(cache_resource);
@@ -8305,7 +8293,7 @@ flow_dv_tag_resource_register
        dev_flow->dv.tag_resource = cache_resource;
        DRV_LOG(DEBUG, "new tag resource %p: refcnt now %d++",
                (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
+               __atomic_load_n(&cache_resource->refcnt, __ATOMIC_RELAXED));
        return 0;
 }
 
@@ -8333,8 +8321,8 @@ flow_dv_tag_release(struct rte_eth_dev *dev,
                return 0;
        DRV_LOG(DEBUG, "port %u tag %p: refcnt %d--",
                dev->data->port_id, (void *)tag,
-               rte_atomic32_read(&tag->refcnt));
-       if (rte_atomic32_dec_and_test(&tag->refcnt)) {
+               __atomic_load_n(&tag->refcnt, __ATOMIC_RELAXED));
+       if (__atomic_sub_fetch(&tag->refcnt, 1, __ATOMIC_RELAXED) == 0) {
                claim_zero(mlx5_flow_os_destroy_flow_action(tag->action));
                mlx5_hlist_remove(sh->tag_table, &tag->entry);
                DRV_LOG(DEBUG, "port %u tag %p: removed",
@@ -8661,7 +8649,7 @@ flow_dv_sample_resource_register(struct rte_eth_dev *dev,
        /* Create normal path table level */
        tbl = flow_dv_tbl_resource_get(dev, next_ft_id,
                                        attr->egress, attr->transfer,
-                                       dev_flow->external, NULL, 0, error);
+                                       dev_flow->external, NULL, 0, 0, error);
        if (!tbl) {
                rte_flow_error_set(error, ENOMEM,
                                          RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
@@ -8925,11 +8913,12 @@ flow_dv_translate_action_sample(struct rte_eth_dev *dev,
        const struct rte_flow_action_queue *queue;
        struct mlx5_flow_sub_actions_list *sample_act;
        struct mlx5_flow_sub_actions_idx *sample_idx;
-       struct mlx5_flow_rss_desc *rss_desc = &((struct mlx5_flow_rss_desc *)
-                                             priv->rss_desc)
-                                             [!!priv->flow_nested_idx];
+       struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
+       struct mlx5_flow_rss_desc *rss_desc;
        uint64_t action_flags = 0;
 
+       MLX5_ASSERT(wks);
+       rss_desc = &wks->rss_desc[!!wks->flow_nested_idx];
        sample_act = &res->sample_act;
        sample_idx = &res->sample_idx;
        sample_action = (const struct rte_flow_action_sample *)action->conf;
@@ -9131,18 +9120,18 @@ flow_dv_create_action_sample(struct rte_eth_dev *dev,
                             uint64_t action_flags,
                             struct rte_flow_error *error)
 {
-       struct mlx5_priv *priv = dev->data->dev_private;
        /* update normal path action resource into last index of array */
        uint32_t dest_index = MLX5_MAX_DEST_NUM - 1;
        struct mlx5_flow_sub_actions_list *sample_act =
                                        &mdest_res->sample_act[dest_index];
-       struct mlx5_flow_rss_desc *rss_desc = &((struct mlx5_flow_rss_desc *)
-                                             priv->rss_desc)
-                                             [!!priv->flow_nested_idx];
+       struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
+       struct mlx5_flow_rss_desc *rss_desc;
        uint32_t normal_idx = 0;
        struct mlx5_hrxq *hrxq;
        uint32_t hrxq_idx;
 
+       MLX5_ASSERT(wks);
+       rss_desc = &wks->rss_desc[!!wks->flow_nested_idx];
        if (num_of_dest > 1) {
                if (sample_act->action_flags & MLX5_FLOW_ACTION_QUEUE) {
                        /* Handle QP action for mirroring */
@@ -9232,9 +9221,8 @@ __flow_dv_translate(struct rte_eth_dev *dev,
        struct mlx5_dev_config *dev_conf = &priv->config;
        struct rte_flow *flow = dev_flow->flow;
        struct mlx5_flow_handle *handle = dev_flow->handle;
-       struct mlx5_flow_rss_desc *rss_desc = &((struct mlx5_flow_rss_desc *)
-                                             priv->rss_desc)
-                                             [!!priv->flow_nested_idx];
+       struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
+       struct mlx5_flow_rss_desc *rss_desc;
        uint64_t item_flags = 0;
        uint64_t last_item = 0;
        uint64_t action_flags = 0;
@@ -9280,6 +9268,8 @@ __flow_dv_translate(struct rte_eth_dev *dev,
                .fdb_def_rule = !!priv->fdb_def_rule,
        };
 
+       MLX5_ASSERT(wks);
+       rss_desc = &wks->rss_desc[!!wks->flow_nested_idx];
        memset(&mdest_res, 0, sizeof(struct mlx5_flow_dv_dest_array_resource));
        memset(&sample_res, 0, sizeof(struct mlx5_flow_dv_sample_resource));
        mhdr_res->ft_type = attr->egress ? MLX5DV_FLOW_TABLE_TYPE_NIC_TX :
@@ -9339,7 +9329,7 @@ __flow_dv_translate(struct rte_eth_dev *dev,
                tbl = flow_dv_tbl_resource_get(dev, table, attr->egress,
                                               attr->transfer,
                                               !!dev_flow->external, tunnel,
-                                              attr->group, error);
+                                              attr->group, 0, error);
                if (!tbl)
                        return rte_flow_error_set
                               (error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
@@ -9621,7 +9611,7 @@ __flow_dv_translate(struct rte_eth_dev *dev,
                        tbl = flow_dv_tbl_resource_get(dev, table, attr->egress,
                                                       attr->transfer,
                                                       !!dev_flow->external,
-                                                      tunnel, jump_group,
+                                                      tunnel, jump_group, 0,
                                                       error);
                        if (!tbl)
                                return rte_flow_error_set
@@ -9926,7 +9916,7 @@ __flow_dv_translate(struct rte_eth_dev *dev,
                        mlx5_flow_tunnel_ip_check(items, next_protocol,
                                                  &item_flags, &tunnel);
                        flow_dv_translate_item_ipv4(match_mask, match_value,
-                                                   items, item_flags, tunnel,
+                                                   items, tunnel,
                                                    dev_flow->dv.group);
                        matcher.priority = MLX5_PRIORITY_MAP_L3;
                        last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV4 :
@@ -9949,7 +9939,7 @@ __flow_dv_translate(struct rte_eth_dev *dev,
                        mlx5_flow_tunnel_ip_check(items, next_protocol,
                                                  &item_flags, &tunnel);
                        flow_dv_translate_item_ipv6(match_mask, match_value,
-                                                   items, item_flags, tunnel,
+                                                   items, tunnel,
                                                    dev_flow->dv.group);
                        matcher.priority = MLX5_PRIORITY_MAP_L3;
                        last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV6 :
@@ -10263,6 +10253,7 @@ __flow_dv_rss_get_hrxq(struct rte_eth_dev *dev, struct rte_flow *flow,
                           struct mlx5_hrxq **hrxq)
 {
        struct mlx5_priv *priv = dev->data->dev_private;
+       struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
        uint32_t hrxq_idx;
 
        if (flow->shared_rss) {
@@ -10273,12 +10264,12 @@ __flow_dv_rss_get_hrxq(struct rte_eth_dev *dev, struct rte_flow *flow,
                if (hrxq_idx) {
                        *hrxq = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_HRXQ],
                                               hrxq_idx);
-                       rte_atomic32_inc(&(*hrxq)->refcnt);
+                       __atomic_fetch_add(&(*hrxq)->refcnt, 1,
+                                          __ATOMIC_RELAXED);
                }
        } else {
                struct mlx5_flow_rss_desc *rss_desc =
-                               &((struct mlx5_flow_rss_desc *)priv->rss_desc)
-                               [!!priv->flow_nested_idx];
+                               &wks->rss_desc[!!wks->flow_nested_idx];
 
                MLX5_ASSERT(rss_desc->queue_num);
                hrxq_idx = mlx5_hrxq_get(dev, rss_desc->key,
@@ -10329,9 +10320,11 @@ __flow_dv_apply(struct rte_eth_dev *dev, struct rte_flow *flow,
        int n;
        int err;
        int idx;
+       struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
 
-       for (idx = priv->flow_idx - 1; idx >= priv->flow_nested_idx; idx--) {
-               dev_flow = &((struct mlx5_flow *)priv->inter_flows)[idx];
+       MLX5_ASSERT(wks);
+       for (idx = wks->flow_idx - 1; idx >= wks->flow_nested_idx; idx--) {
+               dev_flow = &wks->flows[idx];
                dv = &dev_flow->dv;
                dh = dev_flow->handle;
                dv_h = &dh->dvh;
@@ -10340,24 +10333,9 @@ __flow_dv_apply(struct rte_eth_dev *dev, struct rte_flow *flow,
                        if (dv->transfer) {
                                dv->actions[n++] = priv->sh->esw_drop_action;
                        } else {
-                               struct mlx5_hrxq *drop_hrxq;
-                               drop_hrxq = mlx5_drop_action_create(dev);
-                               if (!drop_hrxq) {
-                                       rte_flow_error_set
-                                               (error, errno,
-                                                RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
-                                                NULL,
-                                                "cannot get drop hash queue");
-                                       goto error;
-                               }
-                               /*
-                                * Drop queues will be released by the specify
-                                * mlx5_drop_action_destroy() function. Assign
-                                * the special index to hrxq to mark the queue
-                                * has been allocated.
-                                */
-                               dh->rix_hrxq = UINT32_MAX;
-                               dv->actions[n++] = drop_hrxq->action;
+                               MLX5_ASSERT(priv->drop_queue.hrxq);
+                               dv->actions[n++] =
+                                               priv->drop_queue.hrxq->action;
                        }
                } else if (dh->fate_action == MLX5_FLOW_FATE_QUEUE &&
                           !dv_h->rix_sample && !dv_h->rix_dest_array) {
@@ -10375,16 +10353,14 @@ __flow_dv_apply(struct rte_eth_dev *dev, struct rte_flow *flow,
                        dh->rix_hrxq = hrxq_idx;
                        dv->actions[n++] = hrxq->action;
                } else if (dh->fate_action == MLX5_FLOW_FATE_DEFAULT_MISS) {
-                       if (flow_dv_default_miss_resource_register
-                                       (dev, error)) {
+                       if (!priv->sh->default_miss_action) {
                                rte_flow_error_set
                                        (error, rte_errno,
                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
-                                        "cannot create default miss resource");
-                               goto error_default_miss;
+                                        "default miss action not be created.");
+                               goto error;
                        }
-                       dh->rix_default_fate =  MLX5_FLOW_FATE_DEFAULT_MISS;
-                       dv->actions[n++] = priv->sh->default_miss.action;
+                       dv->actions[n++] = priv->sh->default_miss_action;
                }
                err = mlx5_flow_os_create_flow(dv_h->matcher->matcher_object,
                                               (void *)&dv->value, n,
@@ -10409,21 +10385,13 @@ __flow_dv_apply(struct rte_eth_dev *dev, struct rte_flow *flow,
        }
        return 0;
 error:
-       if (dh->fate_action == MLX5_FLOW_FATE_DEFAULT_MISS)
-               flow_dv_default_miss_resource_release(dev);
-error_default_miss:
        err = rte_errno; /* Save rte_errno before cleanup. */
        SILIST_FOREACH(priv->sh->ipool[MLX5_IPOOL_MLX5_FLOW], flow->dev_handles,
                       handle_idx, dh, next) {
                /* hrxq is union, don't clear it if the flag is not set. */
-               if (dh->rix_hrxq) {
-                       if (dh->fate_action == MLX5_FLOW_FATE_DROP) {
-                               mlx5_drop_action_destroy(dev);
-                               dh->rix_hrxq = 0;
-                       } else if (dh->fate_action == MLX5_FLOW_FATE_QUEUE) {
-                               mlx5_hrxq_release(dev, dh->rix_hrxq);
-                               dh->rix_hrxq = 0;
-                       }
+               if (dh->fate_action == MLX5_FLOW_FATE_QUEUE && dh->rix_hrxq) {
+                       mlx5_hrxq_release(dev, dh->rix_hrxq);
+                       dh->rix_hrxq = 0;
                }
                if (dh->vf_vlan.tag && dh->vf_vlan.created)
                        mlx5_vlan_vmwa_release(dev, &dh->vf_vlan);
@@ -10452,8 +10420,8 @@ flow_dv_matcher_release(struct rte_eth_dev *dev,
        MLX5_ASSERT(matcher->matcher_object);
        DRV_LOG(DEBUG, "port %u matcher %p: refcnt %d--",
                dev->data->port_id, (void *)matcher,
-               rte_atomic32_read(&matcher->refcnt));
-       if (rte_atomic32_dec_and_test(&matcher->refcnt)) {
+               __atomic_load_n(&matcher->refcnt, __ATOMIC_RELAXED));
+       if (__atomic_sub_fetch(&matcher->refcnt, 1, __ATOMIC_RELAXED) == 0) {
                claim_zero(mlx5_flow_os_destroy_flow_matcher
                           (matcher->matcher_object));
                LIST_REMOVE(matcher, next);
@@ -10493,8 +10461,9 @@ flow_dv_encap_decap_resource_release(struct rte_eth_dev *dev,
        MLX5_ASSERT(cache_resource->action);
        DRV_LOG(DEBUG, "encap/decap resource %p: refcnt %d--",
                (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
-       if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
+               __atomic_load_n(&cache_resource->refcnt, __ATOMIC_RELAXED));
+       if (__atomic_sub_fetch(&cache_resource->refcnt, 1,
+                              __ATOMIC_RELAXED) == 0) {
                claim_zero(mlx5_flow_os_destroy_flow_action
                                                (cache_resource->action));
                mlx5_hlist_remove(priv->sh->encaps_decaps,
@@ -10523,58 +10492,13 @@ flow_dv_jump_tbl_resource_release(struct rte_eth_dev *dev,
                                  struct mlx5_flow_handle *handle)
 {
        struct mlx5_priv *priv = dev->data->dev_private;
-       struct mlx5_flow_dv_jump_tbl_resource *cache_resource;
        struct mlx5_flow_tbl_data_entry *tbl_data;
 
        tbl_data = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_JUMP],
                             handle->rix_jump);
        if (!tbl_data)
                return 0;
-       cache_resource = &tbl_data->jump;
-       MLX5_ASSERT(cache_resource->action);
-       DRV_LOG(DEBUG, "jump table resource %p: refcnt %d--",
-               (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
-       if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
-               claim_zero(mlx5_flow_os_destroy_flow_action
-                                               (cache_resource->action));
-               /* jump action memory free is inside the table release. */
-               flow_dv_tbl_resource_release(dev, &tbl_data->tbl);
-               DRV_LOG(DEBUG, "jump table resource %p: removed",
-                       (void *)cache_resource);
-               return 0;
-       }
-       return 1;
-}
-
-/**
- * Release a default miss resource.
- *
- * @param dev
- *   Pointer to Ethernet device.
- * @return
- *   1 while a reference on it exists, 0 when freed.
- */
-static int
-flow_dv_default_miss_resource_release(struct rte_eth_dev *dev)
-{
-       struct mlx5_priv *priv = dev->data->dev_private;
-       struct mlx5_dev_ctx_shared *sh = priv->sh;
-       struct mlx5_flow_default_miss_resource *cache_resource =
-                       &sh->default_miss;
-
-       MLX5_ASSERT(cache_resource->action);
-       DRV_LOG(DEBUG, "default miss resource %p: refcnt %d--",
-                       (void *)cache_resource->action,
-                       rte_atomic32_read(&cache_resource->refcnt));
-       if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
-               claim_zero(mlx5_glue->destroy_flow_action
-                               (cache_resource->action));
-               DRV_LOG(DEBUG, "default miss resource %p: removed",
-                               (void *)cache_resource->action);
-               return 0;
-       }
-       return 1;
+       return flow_dv_tbl_resource_release(dev, &tbl_data->tbl);
 }
 
 /**
@@ -10599,8 +10523,9 @@ flow_dv_modify_hdr_resource_release(struct rte_eth_dev *dev,
        MLX5_ASSERT(cache_resource->action);
        DRV_LOG(DEBUG, "modify-header resource %p: refcnt %d--",
                (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
-       if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
+               __atomic_load_n(&cache_resource->refcnt, __ATOMIC_RELAXED));
+       if (__atomic_sub_fetch(&cache_resource->refcnt, 1,
+                               __ATOMIC_RELAXED) == 0) {
                claim_zero(mlx5_flow_os_destroy_flow_action
                                                (cache_resource->action));
                mlx5_hlist_remove(priv->sh->modify_cmds,
@@ -10639,8 +10564,9 @@ flow_dv_port_id_action_resource_release(struct rte_eth_dev *dev,
        MLX5_ASSERT(cache_resource->action);
        DRV_LOG(DEBUG, "port ID action resource %p: refcnt %d--",
                (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
-       if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
+               __atomic_load_n(&cache_resource->refcnt, __ATOMIC_RELAXED));
+       if (__atomic_sub_fetch(&cache_resource->refcnt, 1,
+                              __ATOMIC_RELAXED) == 0) {
                claim_zero(mlx5_flow_os_destroy_flow_action
                                                (cache_resource->action));
                ILIST_REMOVE(priv->sh->ipool[MLX5_IPOOL_PORT_ID],
@@ -10680,8 +10606,9 @@ flow_dv_push_vlan_action_resource_release(struct rte_eth_dev *dev,
        MLX5_ASSERT(cache_resource->action);
        DRV_LOG(DEBUG, "push VLAN action resource %p: refcnt %d--",
                (void *)cache_resource,
-               rte_atomic32_read(&cache_resource->refcnt));
-       if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
+               __atomic_load_n(&cache_resource->refcnt, __ATOMIC_RELAXED));
+       if (__atomic_sub_fetch(&cache_resource->refcnt, 1,
+                              __ATOMIC_RELAXED) == 0) {
                claim_zero(mlx5_flow_os_destroy_flow_action
                                                (cache_resource->action));
                ILIST_REMOVE(priv->sh->ipool[MLX5_IPOOL_PUSH_VLAN],
@@ -10710,9 +10637,6 @@ flow_dv_fate_resource_release(struct rte_eth_dev *dev,
        if (!handle->rix_fate)
                return;
        switch (handle->fate_action) {
-       case MLX5_FLOW_FATE_DROP:
-               mlx5_drop_action_destroy(dev);
-               break;
        case MLX5_FLOW_FATE_QUEUE:
                mlx5_hrxq_release(dev, handle->rix_hrxq);
                break;
@@ -10723,9 +10647,6 @@ flow_dv_fate_resource_release(struct rte_eth_dev *dev,
                flow_dv_port_id_action_resource_release(dev,
                                handle->rix_port_id_action);
                break;
-       case MLX5_FLOW_FATE_DEFAULT_MISS:
-               flow_dv_default_miss_resource_release(dev);
-               break;
        default:
                DRV_LOG(DEBUG, "Incorrect fate action:%d", handle->fate_action);
                break;
@@ -10895,9 +10816,7 @@ __flow_dv_remove(struct rte_eth_dev *dev, struct rte_flow *flow)
                        claim_zero(mlx5_flow_os_destroy_flow(dh->drv_flow));
                        dh->drv_flow = NULL;
                }
-               if (dh->fate_action == MLX5_FLOW_FATE_DROP ||
-                   dh->fate_action == MLX5_FLOW_FATE_QUEUE ||
-                   dh->fate_action == MLX5_FLOW_FATE_DEFAULT_MISS)
+               if (dh->fate_action == MLX5_FLOW_FATE_QUEUE)
                        flow_dv_fate_resource_release(dev, dh);
                if (dh->vf_vlan.tag && dh->vf_vlan.created)
                        mlx5_vlan_vmwa_release(dev, &dh->vf_vlan);
@@ -11647,7 +11566,7 @@ flow_dv_prepare_mtr_tables(struct rte_eth_dev *dev,
        /* Create the meter table with METER level. */
        dtb->tbl = flow_dv_tbl_resource_get(dev, MLX5_FLOW_TABLE_LEVEL_METER,
                                            egress, transfer, false, NULL, 0,
-                                           &error);
+                                           0, &error);
        if (!dtb->tbl) {
                DRV_LOG(ERR, "Failed to create meter policer table.");
                return -1;
@@ -11656,7 +11575,7 @@ flow_dv_prepare_mtr_tables(struct rte_eth_dev *dev,
        dtb->sfx_tbl = flow_dv_tbl_resource_get(dev,
                                            MLX5_FLOW_TABLE_LEVEL_SUFFIX,
                                            egress, transfer, false, NULL, 0,
-                                           &error);
+                                           0, &error);
        if (!dtb->sfx_tbl) {
                DRV_LOG(ERR, "Failed to create meter suffix table.");
                return -1;
@@ -11975,10 +11894,11 @@ mlx5_flow_dv_discover_counter_offset_support(struct rte_eth_dev *dev)
        void *flow = NULL;
        int i, ret = -1;
 
-       tbl = flow_dv_tbl_resource_get(dev, 0, 0, 0, false, NULL, 0, NULL);
+       tbl = flow_dv_tbl_resource_get(dev, 0, 0, 0, false, NULL, 0, 0, NULL);
        if (!tbl)
                goto err;
-       dest_tbl = flow_dv_tbl_resource_get(dev, 1, 0, 0, false, NULL, 0, NULL);
+       dest_tbl = flow_dv_tbl_resource_get(dev, 1, 0, 0, false,
+                                           NULL, 0, 0, NULL);
        if (!dest_tbl)
                goto err;
        dcs = mlx5_devx_cmd_flow_counter_alloc(priv->sh->ctx, 0x4);
@@ -12300,6 +12220,31 @@ flow_dv_action_update(struct rte_eth_dev *dev,
        return ret;
 }
 
+static int
+flow_dv_sync_domain(struct rte_eth_dev *dev, uint32_t domains, uint32_t flags)
+{
+       struct mlx5_priv *priv = dev->data->dev_private;
+       int ret = 0;
+
+       if ((domains & MLX5_DOMAIN_BIT_NIC_RX) && priv->sh->rx_domain != NULL) {
+               ret = mlx5_glue->dr_sync_domain(priv->sh->rx_domain,
+                                               flags);
+               if (ret != 0)
+                       return ret;
+       }
+       if ((domains & MLX5_DOMAIN_BIT_NIC_TX) && priv->sh->tx_domain != NULL) {
+               ret = mlx5_glue->dr_sync_domain(priv->sh->tx_domain, flags);
+               if (ret != 0)
+                       return ret;
+       }
+       if ((domains & MLX5_DOMAIN_BIT_FDB) && priv->sh->fdb_domain != NULL) {
+               ret = mlx5_glue->dr_sync_domain(priv->sh->fdb_domain, flags);
+               if (ret != 0)
+                       return ret;
+       }
+       return 0;
+}
+
 const struct mlx5_flow_driver_ops mlx5_flow_dv_drv_ops = {
        .validate = flow_dv_validate,
        .prepare = flow_dv_prepare,
@@ -12320,6 +12265,7 @@ const struct mlx5_flow_driver_ops mlx5_flow_dv_drv_ops = {
        .action_create = flow_dv_action_create,
        .action_destroy = flow_dv_action_destroy,
        .action_update = flow_dv_action_update,
+       .sync_domain = flow_dv_sync_domain,
 };
 
 #endif /* HAVE_IBV_FLOW_DV_SUPPORT */