All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] RDMA/hns: return 0 rather than return a garbage status value
@ 2017-09-29 20:13 ` Colin King
  0 siblings, 0 replies; 8+ messages in thread
From: Colin King @ 2017-09-29 20:13 UTC (permalink / raw)
  To: Lijun Ou, Wei Hu, Doug Ledford, Sean Hefty, Hal Rosenstock,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA
  Cc: kernel-janitors-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

From: Colin Ian King <colin.king@canonical.com>

For the case where hr_qp->state = IB_QPS_RESET, an uninitialized
value in ret is being returned by function hns_roce_v2_query_qp.
Fix this by setting ret to 0 for this specific return condition.

Detected by CoverityScan, CID#1457203 ("Unitialized scalar variable")

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/infiniband/hw/hns/hns_roce_hw_v2.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
index 4870b51caab9..791dae72e775 100644
--- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
+++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
@@ -2805,6 +2805,7 @@ static int hns_roce_v2_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr,
 
 	if (hr_qp->state = IB_QPS_RESET) {
 		qp_attr->qp_state = IB_QPS_RESET;
+		ret = 0;
 		goto done;
 	}
 
-- 
2.14.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-10-04 18:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-29 20:13 [PATCH] RDMA/hns: return 0 rather than return a garbage status value Colin King
2017-09-29 20:13 ` Colin King
2017-09-29 20:13 ` Colin King
2017-09-30  7:11 ` Wei Hu (Xavier)
2017-09-30  7:11   ` Wei Hu (Xavier)
2017-09-30  7:11   ` Wei Hu (Xavier)
2017-10-04 18:40 ` Doug Ledford
2017-10-04 18:40   ` Doug Ledford

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.