From: Dekel Peled Date: Thu, 15 Nov 2018 15:17:14 +0000 (+0200) Subject: net/mlx5: fix packet type for MPLS in UDP X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=c5e508f0c3f2c1a4cc943f588235dd7be0ab6dba;hp=38f7efaaf5ac7894bfd852b812e6ba3258ceffb4;p=dpdk.git net/mlx5: fix packet type for MPLS in UDP Change the relevant value in tunnels_info[] to match tunnel type. Fixes: a4a5cd21d20a ("net/mlx5: add flow MPLS item") Cc: stable@dpdk.org Signed-off-by: Dekel Peled Acked-by: Shahaf Shuler --- diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c index c8fad5f00c..97dc3e1f80 100644 --- a/drivers/net/mlx5/mlx5_flow.c +++ b/drivers/net/mlx5/mlx5_flow.c @@ -294,7 +294,7 @@ static struct mlx5_flow_tunnel_info tunnels_info[] = { }, { .tunnel = MLX5_FLOW_LAYER_MPLS | MLX5_FLOW_LAYER_OUTER_L4_UDP, - .ptype = RTE_PTYPE_TUNNEL_MPLS_IN_GRE | RTE_PTYPE_L4_UDP, + .ptype = RTE_PTYPE_TUNNEL_MPLS_IN_UDP | RTE_PTYPE_L4_UDP, }, { .tunnel = MLX5_FLOW_LAYER_MPLS,