Commit 5a17ad11 authored by Dennis Dalessandro's avatar Dennis Dalessandro Committed by Doug Ledford

IB/rdmavt: Add destroy qp verb

This patch adds in support the qp destroy verb call.
Reviewed-by: default avatarIra Weiny <ira.weiny@intel.com>
Signed-off-by: default avatarDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 3b0b3fb3
......@@ -1201,13 +1201,30 @@ int rvt_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
*/
int rvt_destroy_qp(struct ib_qp *ibqp)
{
/*
* VT-DRIVER-API: qp_flush()
* Driver provies a mechanism to flush and wait for that flush to
* finish.
*/
struct rvt_qp *qp = ibqp_to_rvtqp(ibqp);
struct rvt_dev_info *rdi = ib_to_rvt(ibqp->device);
return -EOPNOTSUPP;
spin_lock_irq(&qp->r_lock);
spin_lock(&qp->s_lock);
rvt_reset_qp(rdi, qp, ibqp->qp_type);
spin_unlock(&qp->s_lock);
spin_unlock_irq(&qp->r_lock);
/* qpn is now available for use again */
rvt_free_qpn(&rdi->qp_dev->qpn_table, qp->ibqp.qp_num);
spin_lock(&rdi->n_qps_lock);
rdi->n_qps_allocated--;
spin_unlock(&rdi->n_qps_lock);
if (qp->ip)
kref_put(&qp->ip->ref, rvt_release_mmap_info);
else
vfree(qp->r_rq.wq);
vfree(qp->s_wq);
rdi->driver_f.qp_priv_free(rdi, qp);
kfree(qp);
return 0;
}
int rvt_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment