net/mlx5: fix MPLS RSS expansion
MPLSoUDP and MPLSoGRE are supported by PMD from rte flow point of view. RSS expansion doesn't support above but, instead, supports normal MPLS over L2, which actually will be rejected by PMD. This patch removes RSS expansion support of the MPLS over L2 and adds support of MPLSoUDP and MPLSoGRE. In addition to above, support for eth over MPLS expansion is added too. Fixes: a4a5cd21d20a ("net/mlx5: add flow MPLS item") Cc: stable@dpdk.org Signed-off-by: Xiaoyu Min <jackmin@nvidia.com> Acked-by: Matan Azrad <matan@nvidia.com>
This commit is contained in:
parent
14ad99d78a
commit
84f4764c22
@ -131,6 +131,7 @@ mlx5_flow_is_rss_expandable_item(const struct rte_flow_item *item)
|
||||
case RTE_FLOW_ITEM_TYPE_NVGRE:
|
||||
case RTE_FLOW_ITEM_TYPE_GRE:
|
||||
case RTE_FLOW_ITEM_TYPE_GENEVE:
|
||||
case RTE_FLOW_ITEM_TYPE_MPLS:
|
||||
return true;
|
||||
default:
|
||||
break;
|
||||
@ -477,8 +478,7 @@ static const struct mlx5_flow_expand_node mlx5_support_expansion[] = {
|
||||
},
|
||||
[MLX5_EXPANSION_OUTER_ETH] = {
|
||||
.next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_OUTER_IPV4,
|
||||
MLX5_EXPANSION_OUTER_IPV6,
|
||||
MLX5_EXPANSION_MPLS),
|
||||
MLX5_EXPANSION_OUTER_IPV6),
|
||||
.type = RTE_FLOW_ITEM_TYPE_ETH,
|
||||
.rss_types = 0,
|
||||
},
|
||||
@ -506,7 +506,8 @@ static const struct mlx5_flow_expand_node mlx5_support_expansion[] = {
|
||||
},
|
||||
[MLX5_EXPANSION_OUTER_IPV4_UDP] = {
|
||||
.next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_VXLAN,
|
||||
MLX5_EXPANSION_VXLAN_GPE),
|
||||
MLX5_EXPANSION_VXLAN_GPE,
|
||||
MLX5_EXPANSION_MPLS),
|
||||
.type = RTE_FLOW_ITEM_TYPE_UDP,
|
||||
.rss_types = ETH_RSS_NONFRAG_IPV4_UDP,
|
||||
},
|
||||
@ -528,7 +529,8 @@ static const struct mlx5_flow_expand_node mlx5_support_expansion[] = {
|
||||
},
|
||||
[MLX5_EXPANSION_OUTER_IPV6_UDP] = {
|
||||
.next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_VXLAN,
|
||||
MLX5_EXPANSION_VXLAN_GPE),
|
||||
MLX5_EXPANSION_VXLAN_GPE,
|
||||
MLX5_EXPANSION_MPLS),
|
||||
.type = RTE_FLOW_ITEM_TYPE_UDP,
|
||||
.rss_types = ETH_RSS_NONFRAG_IPV6_UDP,
|
||||
},
|
||||
@ -551,12 +553,14 @@ static const struct mlx5_flow_expand_node mlx5_support_expansion[] = {
|
||||
[MLX5_EXPANSION_GRE] = {
|
||||
.next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
|
||||
MLX5_EXPANSION_IPV6,
|
||||
MLX5_EXPANSION_GRE_KEY),
|
||||
MLX5_EXPANSION_GRE_KEY,
|
||||
MLX5_EXPANSION_MPLS),
|
||||
.type = RTE_FLOW_ITEM_TYPE_GRE,
|
||||
},
|
||||
[MLX5_EXPANSION_GRE_KEY] = {
|
||||
.next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
|
||||
MLX5_EXPANSION_IPV6),
|
||||
MLX5_EXPANSION_IPV6,
|
||||
MLX5_EXPANSION_MPLS),
|
||||
.type = RTE_FLOW_ITEM_TYPE_GRE_KEY,
|
||||
.optional = 1,
|
||||
},
|
||||
@ -566,7 +570,8 @@ static const struct mlx5_flow_expand_node mlx5_support_expansion[] = {
|
||||
},
|
||||
[MLX5_EXPANSION_MPLS] = {
|
||||
.next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
|
||||
MLX5_EXPANSION_IPV6),
|
||||
MLX5_EXPANSION_IPV6,
|
||||
MLX5_EXPANSION_ETH),
|
||||
.type = RTE_FLOW_ITEM_TYPE_MPLS,
|
||||
},
|
||||
[MLX5_EXPANSION_ETH] = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user