aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchongjiapeng <jiapeng.chong@linux.alibaba.com>2021-10-09 16:09:26 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-10-20 11:23:05 +0200
commitd0737ab232f631c366d3b2ca3b3c828d6dd6d309 (patch)
tree0f50150868ca392f9db6c500014458d310b53a29
parenteaa8097fa6ea34646cf9253044e151ce65889aab (diff)
downloadhikey-linaro-d0737ab232f631c366d3b2ca3b3c828d6dd6d309.tar.gz
qed: Fix missing error code in qed_slowpath_start()
commit a5a14ea7b4e55604acb0dc9d88fdb4cb6945bc77 upstream. The error code is missing in this code scenario, add the error code '-EINVAL' to the return value 'rc'. Eliminate the follow smatch warning: drivers/net/ethernet/qlogic/qed/qed_main.c:1298 qed_slowpath_start() warn: missing error code 'rc'. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Fixes: d51e4af5c209 ("qed: aRFS infrastructure support") Signed-off-by: chongjiapeng <jiapeng.chong@linux.alibaba.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/net/ethernet/qlogic/qed/qed_main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/qlogic/qed/qed_main.c b/drivers/net/ethernet/qlogic/qed/qed_main.c
index 9d77f318d11e..43c85e584b6f 100644
--- a/drivers/net/ethernet/qlogic/qed/qed_main.c
+++ b/drivers/net/ethernet/qlogic/qed/qed_main.c
@@ -1067,6 +1067,7 @@ static int qed_slowpath_start(struct qed_dev *cdev,
} else {
DP_NOTICE(cdev,
"Failed to acquire PTT for aRFS\n");
+ rc = -EINVAL;
goto err;
}
}