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