[PATCH] net/mlx5/hws: set the correct VLAN inner_type value
Bing Zhao
bingz at nvidia.com
Wed Feb 21 07:28:11 CET 2024
From: Hamdan Igbaria <hamdani at nvidia.com>
Set the correct VLAN inner_type value, till today the
once the VLAN inner_type field was set, an incorrect
value was taken instead of the inner_type field.
Fixes: c55c2bf35333 ("net/mlx5/hws: add definer layer")
Cc: stable at dpdk.org
Signed-off-by: Hamdan Igbaria <hamdani at nvidia.com>
Reviewed-by: Erez Shitrit <erezsh at nvidia.com>
Acked-by: Suanming Mou <suanmingm at nvidia.com>
---
drivers/net/mlx5/hws/mlx5dr_definer.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/net/mlx5/hws/mlx5dr_definer.c b/drivers/net/mlx5/hws/mlx5dr_definer.c
index 6585c91e1f..bedf65e66a 100644
--- a/drivers/net/mlx5/hws/mlx5dr_definer.c
+++ b/drivers/net/mlx5/hws/mlx5dr_definer.c
@@ -197,6 +197,7 @@ struct mlx5dr_definer_conv_data {
X(SET, random_number, v->value, rte_flow_item_random) \
X(SET, ib_l4_bth_a, v->hdr.a, rte_flow_item_ib_bth) \
X(SET, cvlan, STE_CVLAN, rte_flow_item_vlan) \
+ X(SET_BE16, inner_type, v->inner_type, rte_flow_item_vlan) \
/* Item set function format */
#define X(set_type, func_name, value, item_type) \
@@ -873,7 +874,7 @@ mlx5dr_definer_conv_item_vlan(struct mlx5dr_definer_conv_data *cd,
if (m->hdr.eth_proto) {
fc = &cd->fc[DR_CALC_FNAME(ETH_TYPE, inner)];
fc->item_idx = item_idx;
- fc->tag_set = &mlx5dr_definer_eth_type_set;
+ fc->tag_set = &mlx5dr_definer_inner_type_set;
DR_CALC_SET(fc, eth_l2, l3_ethertype, inner);
}
--
2.34.1
More information about the dev
mailing list