40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
|
|
From 0448f90a404a332052aacd45e8445c9fd22cfc61 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Chengwen Feng <fengchengwen@huawei.com>
|
||
|
|
Date: Fri, 18 Oct 2024 14:19:38 +0800
|
||
|
|
Subject: [PATCH] net/hns3: restrict tunnel flow rule to one header
|
||
|
|
|
||
|
|
[ upstream commit 8887c207b9373a1875031c5346706f698322d66d ]
|
||
|
|
|
||
|
|
The device's flow director supports a maximum of one tunnel header, if
|
||
|
|
passed more than one tunnel header from rte-flow API, the driver should
|
||
|
|
return error.
|
||
|
|
|
||
|
|
Fixes: fcba820d9b9e ("net/hns3: support flow director")
|
||
|
|
Cc: stable@dpdk.org
|
||
|
|
|
||
|
|
Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
|
||
|
|
Signed-off-by: Jie Hai <haijie1@huawei.com>
|
||
|
|
---
|
||
|
|
drivers/net/hns3/hns3_flow.c | 5 +++++
|
||
|
|
1 file changed, 5 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/drivers/net/hns3/hns3_flow.c b/drivers/net/hns3/hns3_flow.c
|
||
|
|
index 37eb2b4..e287420 100644
|
||
|
|
--- a/drivers/net/hns3/hns3_flow.c
|
||
|
|
+++ b/drivers/net/hns3/hns3_flow.c
|
||
|
|
@@ -1221,6 +1221,11 @@ hns3_parse_tunnel(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
|
||
|
|
"Tunnel packets must configure "
|
||
|
|
"with mask");
|
||
|
|
|
||
|
|
+ if (rule->key_conf.spec.tunnel_type != 0)
|
||
|
|
+ return rte_flow_error_set(error, EINVAL,
|
||
|
|
+ RTE_FLOW_ERROR_TYPE_ITEM,
|
||
|
|
+ item, "Too many tunnel headers!");
|
||
|
|
+
|
||
|
|
switch (item->type) {
|
||
|
|
case RTE_FLOW_ITEM_TYPE_VXLAN:
|
||
|
|
case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|