]> git.droids-corp.org - dpdk.git/commitdiff
net/mlx5: fix initialization for flow group
authorOri Kam <orika@mellanox.com>
Sun, 14 Apr 2019 20:18:55 +0000 (20:18 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 3 May 2019 16:45:22 +0000 (18:45 +0200)
The flow group should be initialized.
For example selecting if the encapsulation is for root or private tables
is based on the flow->group value.

Fixes: 4f84a19779ca ("net/mlx5: add Direct Rules API")
Signed-off-by: Ori Kam <orika@mellanox.com>
Acked-by: Yongseok Koh <yskoh@mellanox.com>
drivers/net/mlx5/mlx5_flow_dv.c

index 2f777ecab2af7f54a1544e50ef32f9bf0e53c82f..c2a2fc6239ad9c101070d791ff38aadff6007b19 100644 (file)
@@ -3624,6 +3624,7 @@ flow_dv_translate(struct rte_eth_dev *dev,
        struct mlx5_flow_dv_tag_resource tag_resource;
        uint32_t modify_action_position = UINT32_MAX;
 
+       flow->group = attr->group;
        if (attr->transfer)
                res.ft_type = MLX5DV_FLOW_TABLE_TYPE_FDB;
        if (priority == MLX5_FLOW_PRIO_RSVD)