Lines Matching defs:qp_attr
642 struct ib_qp_init_attr qp_attr;
710 memset(&qp_attr, 0, sizeof qp_attr);
711 qp_attr.event_handler = qp_event_handler;
712 qp_attr.qp_context = client;
713 qp_attr.cap.max_send_wr = opts.sq_depth;
714 qp_attr.cap.max_recv_wr = opts.rq_depth;
715 qp_attr.cap.max_send_sge = P9_RDMA_SEND_SGE;
716 qp_attr.cap.max_recv_sge = P9_RDMA_RECV_SGE;
717 qp_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
718 qp_attr.qp_type = IB_QPT_RC;
719 qp_attr.send_cq = rdma->cq;
720 qp_attr.recv_cq = rdma->cq;
721 err = rdma_create_qp(rdma->cm_id, rdma->pd, &qp_attr);