Lines Matching refs:rep_param
2153 } *rep_param = NULL; in srpt_cm_req_recv() local
2178 rep_param = kzalloc(sizeof(*rep_param), GFP_KERNEL); in srpt_cm_req_recv()
2179 if (!rsp || !rej || !rep_param) in srpt_cm_req_recv()
2417 rep_param->rdma_cm.private_data = (void *)rsp; in srpt_cm_req_recv()
2418 rep_param->rdma_cm.private_data_len = sizeof(*rsp); in srpt_cm_req_recv()
2419 rep_param->rdma_cm.rnr_retry_count = 7; in srpt_cm_req_recv()
2420 rep_param->rdma_cm.flow_control = 1; in srpt_cm_req_recv()
2421 rep_param->rdma_cm.responder_resources = 4; in srpt_cm_req_recv()
2422 rep_param->rdma_cm.initiator_depth = 4; in srpt_cm_req_recv()
2424 rep_param->ib_cm.qp_num = ch->qp->qp_num; in srpt_cm_req_recv()
2425 rep_param->ib_cm.private_data = (void *)rsp; in srpt_cm_req_recv()
2426 rep_param->ib_cm.private_data_len = sizeof(*rsp); in srpt_cm_req_recv()
2427 rep_param->ib_cm.rnr_retry_count = 7; in srpt_cm_req_recv()
2428 rep_param->ib_cm.flow_control = 1; in srpt_cm_req_recv()
2429 rep_param->ib_cm.failover_accepted = 0; in srpt_cm_req_recv()
2430 rep_param->ib_cm.srq = 1; in srpt_cm_req_recv()
2431 rep_param->ib_cm.responder_resources = 4; in srpt_cm_req_recv()
2432 rep_param->ib_cm.initiator_depth = 4; in srpt_cm_req_recv()
2442 ret = rdma_accept(rdma_cm_id, &rep_param->rdma_cm); in srpt_cm_req_recv()
2444 ret = ib_send_cm_rep(ib_cm_id, &rep_param->ib_cm); in srpt_cm_req_recv()
2517 kfree(rep_param); in srpt_cm_req_recv()