[dpdk-dev] [PATCH v1] net/failsafe: fix strerror call in sub-eal

Gaetan Rivet gaetan.rivet at 6wind.com
Thu Feb 1 11:18:01 CET 2018


Ownership API returns a negative value, strerror expects a valid errno
value, thus positive.

CID 260401:  Error handling issues  (NEGATIVE_RETURNS)
"ret" is passed to a parameter that cannot be negative.

Fixes: dcd0c9c32b8d ("net/failsafe: use ownership mechanism for slaves")

Signed-off-by: Gaetan Rivet <gaetan.rivet at 6wind.com>
---
 drivers/net/failsafe/failsafe_eal.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/failsafe/failsafe_eal.c b/drivers/net/failsafe/failsafe_eal.c
index 8946bf6fe..c3d673125 100644
--- a/drivers/net/failsafe/failsafe_eal.c
+++ b/drivers/net/failsafe/failsafe_eal.c
@@ -79,9 +79,9 @@ fs_bus_init(struct rte_eth_dev *dev)
 			      " %d named %s", i, da->name);
 		}
 		ret = rte_eth_dev_owner_set(pid, &PRIV(dev)->my_owner);
-		if (ret) {
+		if (ret < 0) {
 			INFO("sub_device %d owner set failed (%s),"
-			     " will try again later", i, strerror(ret));
+			     " will try again later", i, strerror(-ret));
 			continue;
 		} else if (strncmp(rte_eth_devices[pid].device->name, da->name,
 			   strlen(da->name)) != 0) {
-- 
2.11.0



More information about the dev mailing list