mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
qedr: return error if destroy CQ failed
Signed-off-by: Ram Amrani <Ram.Amrani@cavium.com> Reviewed-by: Michal Kalderon <Michal.Kalderon@cavium.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
c7eb3bced7
commit
a121135973
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user