summaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/ulp
diff options
context:
space:
mode:
authorLeon Romanovsky <leonro@mellanox.com>2019-05-20 02:54:20 -0400
committerJason Gunthorpe <jgg@mellanox.com>2019-05-21 14:50:53 -0400
commitdfdb08990432b19579703ed5d1efb216b9d2142e (patch)
tree5657e03dd34850a54bf5270ae6a41df6b4d42a54 /drivers/infiniband/ulp
parenteaa1ca9cf99224a57852f339bfbf058fbeadcb79 (diff)
RDMA/ipoib: Remove check of destroy CQ
There are nothing to do from user side with knowledge that destroy CQ fails. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/infiniband/ulp')
-rw-r--r--drivers/infiniband/ulp/ipoib/ipoib_verbs.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_verbs.c b/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
index ba09068f6200..b69304d28f06 100644
--- a/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
+++ b/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
@@ -260,11 +260,8 @@ void ipoib_transport_dev_cleanup(struct net_device *dev)
260 priv->qp = NULL; 260 priv->qp = NULL;
261 } 261 }
262 262
263 if (ib_destroy_cq(priv->send_cq)) 263 ib_destroy_cq(priv->send_cq);
264 ipoib_warn(priv, "ib_cq_destroy (send) failed\n"); 264 ib_destroy_cq(priv->recv_cq);
265
266 if (ib_destroy_cq(priv->recv_cq))
267 ipoib_warn(priv, "ib_cq_destroy (recv) failed\n");
268} 265}
269 266
270void ipoib_event(struct ib_event_handler *handler, 267void ipoib_event(struct ib_event_handler *handler,