rds: Don't check return value from destroy CQ
There is no value in checking ib_destroy_cq() result and skipping to clear struct ic fields. This connection needs to be reinitialized anyway. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Acked-by: Santosh Shilimkar <santosh.shilimkar@oracle.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
committed by
Jason Gunthorpe
parent
deee3c7e49
commit
eaa1ca9cf9
@ -611,11 +611,11 @@ send_hdrs_dma_out:
|
|||||||
qp_out:
|
qp_out:
|
||||||
rdma_destroy_qp(ic->i_cm_id);
|
rdma_destroy_qp(ic->i_cm_id);
|
||||||
recv_cq_out:
|
recv_cq_out:
|
||||||
if (!ib_destroy_cq(ic->i_recv_cq))
|
ib_destroy_cq(ic->i_recv_cq);
|
||||||
ic->i_recv_cq = NULL;
|
ic->i_recv_cq = NULL;
|
||||||
send_cq_out:
|
send_cq_out:
|
||||||
if (!ib_destroy_cq(ic->i_send_cq))
|
ib_destroy_cq(ic->i_send_cq);
|
||||||
ic->i_send_cq = NULL;
|
ic->i_send_cq = NULL;
|
||||||
rds_ibdev_out:
|
rds_ibdev_out:
|
||||||
rds_ib_remove_conn(rds_ibdev, conn);
|
rds_ib_remove_conn(rds_ibdev, conn);
|
||||||
out:
|
out:
|
||||||
|
Reference in New Issue
Block a user