aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmrani, Ram <[email protected]>2016-12-22 14:40:34 +0200
committerDoug Ledford <[email protected]>2016-12-22 11:36:12 -0500
commita121135973ca816821f4ff07aed523df82a91b8e (patch)
tree2c45f973e3144d6a693cc616bd7dffcc2fb089b0
parentc7eb3bced78fe83119b90d730ab58a572eb80e29 (diff)
qedr: return error if destroy CQ failed
Signed-off-by: Ram Amrani <[email protected]> Reviewed-by: Michal Kalderon <[email protected]> Signed-off-by: Doug Ledford <[email protected]>
-rw-r--r--drivers/infiniband/hw/qedr/verbs.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/qedr/verbs.c b/drivers/infiniband/hw/qedr/verbs.c
index 73df639755fa..cbccd7d3ae1e 100644
--- a/drivers/infiniband/hw/qedr/verbs.c
+++ b/drivers/infiniband/hw/qedr/verbs.c
@@ -985,8 +985,13 @@ int qedr_destroy_cq(struct ib_cq *ibcq)
/* GSIs CQs are handled by driver, so they don't exist in the FW */
if (cq->cq_type != QEDR_CQ_TYPE_GSI) {
+ int rc;
+
iparams.icid = cq->icid;
- dev->ops->rdma_destroy_cq(dev->rdma_ctx, &iparams, &oparams);
+ rc = dev->ops->rdma_destroy_cq(dev->rdma_ctx, &iparams,
+ &oparams);
+ if (rc)
+ return rc;
dev->ops->common->chain_free(dev->cdev, &cq->pbl);
}