git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b931dd
)
net/hns3: fix flow director error message
author
Wei Hu (Xavier)
<xavier.huwei@huawei.com>
Tue, 9 Jun 2020 08:44:14 +0000
(16:44 +0800)
committer
Ferruh Yigit
<ferruh.yigit@intel.com>
Tue, 16 Jun 2020 17:21:07 +0000
(19:21 +0200)
There is a coverity defect related "Argument cannot be negative".
This patch fixes it by passing '-ret' to the function strerror() when
ret is negative.
Coverity issue: 349933
Fixes:
fcba820d9b9e
("net/hns3: support flow director")
Cc: stable@dpdk.org
Signed-off-by: Wei Hu (Xavier) <xavier.huwei@huawei.com>
drivers/net/hns3/hns3_fdir.c
patch
|
blob
|
history
diff --git
a/drivers/net/hns3/hns3_fdir.c
b/drivers/net/hns3/hns3_fdir.c
index
4c5928f
..
7bc5bf8
100644
(file)
--- a/
drivers/net/hns3/hns3_fdir.c
+++ b/
drivers/net/hns3/hns3_fdir.c
@@
-893,7
+893,7
@@
static int hns3_insert_fdir_filter(struct hns3_hw *hw,
if (ret < 0) {
rte_spinlock_unlock(&fdir_info->flows_lock);
hns3_err(hw, "Hash table full? err:%d(%s)!", ret,
- strerror(ret));
+ strerror(
-
ret));
return ret;
}