37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
|
|
From 520399c4f369d94e3ab5a35683ef381c6a8d36f1 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Dengdui Huang <huangdengdui@huawei.com>
|
||
|
|
Date: Thu, 7 Nov 2024 19:56:44 +0800
|
||
|
|
Subject: [PATCH] net/hns3: fix error code for repeatedly create counter
|
||
|
|
|
||
|
|
[ upstream commit 585f1f68f18c7acbc4f920053cbf4ba888e0c271 ]
|
||
|
|
|
||
|
|
Return EINVAL instead of ENOSPC when the same counter ID is
|
||
|
|
used for multiple times to create a counter.
|
||
|
|
|
||
|
|
Fixes: fcba820d9b9e ("net/hns3: support flow director")
|
||
|
|
Cc: stable@dpdk.org
|
||
|
|
|
||
|
|
Signed-off-by: Dengdui Huang <huangdengdui@huawei.com>
|
||
|
|
Signed-off-by: Jie Hai <haijie1@huawei.com>
|
||
|
|
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
|
||
|
|
---
|
||
|
|
drivers/net/hns3/hns3_flow.c | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/drivers/net/hns3/hns3_flow.c b/drivers/net/hns3/hns3_flow.c
|
||
|
|
index 40e2409..9a0b5d2 100644
|
||
|
|
--- a/drivers/net/hns3/hns3_flow.c
|
||
|
|
+++ b/drivers/net/hns3/hns3_flow.c
|
||
|
|
@@ -286,7 +286,7 @@ hns3_counter_new(struct rte_eth_dev *dev, uint32_t indirect, uint32_t id,
|
||
|
|
cnt = hns3_counter_lookup(dev, id);
|
||
|
|
if (cnt) {
|
||
|
|
if (!cnt->indirect || cnt->indirect != indirect)
|
||
|
|
- return rte_flow_error_set(error, ENOTSUP,
|
||
|
|
+ return rte_flow_error_set(error, EINVAL,
|
||
|
|
RTE_FLOW_ERROR_TYPE_ACTION_CONF,
|
||
|
|
cnt,
|
||
|
|
"Counter id is used, indirect flag not match");
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|