Lines Matching refs:ibqp
969 int mlx4_query_qp(struct ibv_qp *ibqp, struct ibv_qp_attr *attr, in mlx4_query_qp() argument
974 struct mlx4_qp *qp = to_mqp(ibqp); in mlx4_query_qp()
977 ret = ibv_cmd_query_qp(ibqp, attr, attr_mask, init_attr, &cmd, sizeof cmd); in mlx4_query_qp()
1098 int mlx4_destroy_qp(struct ibv_qp *ibqp) in mlx4_destroy_qp() argument
1100 struct mlx4_qp *qp = to_mqp(ibqp); in mlx4_destroy_qp()
1103 pthread_mutex_lock(&to_mctx(ibqp->context)->qp_table_mutex); in mlx4_destroy_qp()
1104 ret = ibv_cmd_destroy_qp(ibqp); in mlx4_destroy_qp()
1106 pthread_mutex_unlock(&to_mctx(ibqp->context)->qp_table_mutex); in mlx4_destroy_qp()
1110 mlx4_lock_cqs(ibqp); in mlx4_destroy_qp()
1112 if (ibqp->recv_cq) in mlx4_destroy_qp()
1113 __mlx4_cq_clean(to_mcq(ibqp->recv_cq), ibqp->qp_num, in mlx4_destroy_qp()
1114 ibqp->srq ? to_msrq(ibqp->srq) : NULL); in mlx4_destroy_qp()
1115 if (ibqp->send_cq && ibqp->send_cq != ibqp->recv_cq) in mlx4_destroy_qp()
1116 __mlx4_cq_clean(to_mcq(ibqp->send_cq), ibqp->qp_num, NULL); in mlx4_destroy_qp()
1119 mlx4_clear_qp(to_mctx(ibqp->context), ibqp->qp_num); in mlx4_destroy_qp()
1121 mlx4_unlock_cqs(ibqp); in mlx4_destroy_qp()
1122 pthread_mutex_unlock(&to_mctx(ibqp->context)->qp_table_mutex); in mlx4_destroy_qp()
1128 mlx4_free_db(to_mctx(ibqp->context), MLX4_DB_TYPE_RQ, qp->db); in mlx4_destroy_qp()