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 <[email protected]>
Acked-by: Wei Hu (Xavier) <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
if (hr_qp->state == IB_QPS_RESET) {
qp_attr->qp_state = IB_QPS_RESET;
+ ret = 0;
goto done;
}