Home | History | Annotate | Download | only in libpcap

Lines Matching defs:qp

56 	struct ibv_qp *			qp;
84 ibv_destroy_qp(priv->qp);
110 ibv_post_recv(priv->qp, &wr, &bad_wr);
234 priv->qp = ibv_create_qp(priv->pd, &qp_init_attr);
235 if (!priv->qp) {
237 "Failed to create QP for device %s", handle->opt.device);
244 if (ibv_modify_qp(priv->qp, &qp_attr, IBV_QP_STATE | IBV_QP_PORT)) {
246 "Failed to modify QP to INIT for device %s", handle->opt.device);
252 if (ibv_modify_qp(priv->qp, &qp_attr, IBV_QP_STATE)) {
254 "Failed to modify QP to RTR for device %s", handle->opt.device);
262 priv->flow = ibv_create_flow(priv->qp, &flow_attr);
329 if (priv->qp) {
330 ibv_destroy_qp(priv->qp);