• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/infiniband/hw/ehca/

Lines Matching defs:mqpcb

760 	struct hcp_modify_qp_control_block *mqpcb;
771 mqpcb = ehca_alloc_fw_ctrlblock(GFP_KERNEL);
772 if (!mqpcb) {
773 ehca_err(ibqp->device, "Could not get zeroed page for mqpcb "
781 mqpcb, my_qp->galpas.kernel);
790 qp_cur_state = ehca2ib_qp_state(mqpcb->qp_state);
796 mqpcb->qp_state, my_qp, ibqp->qp_num);
854 if ((mqpcb->qp_state = ib2ehca_qp_state(qp_new_state)))
923 mqpcb->rdma_atomic_ctrl = 3;
930 mqpcb->rdma_nr_atomic_resp_res = 1; /* default to 1 */
936 mqpcb->prim_p_key_idx = attr->pkey_index;
948 mqpcb->prim_phys_port = attr->port_num;
952 mqpcb->qkey = attr->qkey;
960 mqpcb->dlid = attr->ah_attr.dlid;
962 mqpcb->source_path_bits = attr->ah_attr.src_path_bits;
964 mqpcb->service_level = attr->ah_attr.sl;
968 mqpcb->max_static_rate = (ah_mult > 0) ?
971 mqpcb->max_static_rate = 0;
985 mqpcb->send_grh_flag = 1;
987 mqpcb->source_gid_idx = attr->ah_attr.grh.sgid_index;
992 mqpcb->dest_gid.byte[cnt] =
996 mqpcb->flow_label = attr->ah_attr.grh.flow_label;
998 mqpcb->hop_limit = attr->ah_attr.grh.hop_limit;
1000 mqpcb->traffic_class = attr->ah_attr.grh.traffic_class;
1007 mqpcb->path_mtu = attr->path_mtu;
1011 mqpcb->timeout = attr->timeout;
1015 mqpcb->retry_count = attr->retry_cnt;
1019 mqpcb->rnr_retry_count = attr->rnr_retry;
1023 mqpcb->receive_psn = attr->rq_psn;
1027 mqpcb->rdma_nr_atomic_resp_res = attr->max_dest_rd_atomic < 3 ?
1033 mqpcb->rdma_atomic_outst_dest_qp = attr->max_rd_atomic < 3 ?
1044 mqpcb->dlid_al = attr->alt_ah_attr.dlid;
1046 mqpcb->source_path_bits_al = attr->alt_ah_attr.src_path_bits;
1049 mqpcb->service_level_al = attr->alt_ah_attr.sl;
1053 mqpcb->max_static_rate = (ah_mult > 0) ?
1056 mqpcb->max_static_rate_al = 0;
1065 mqpcb->send_grh_flag_al = 1 << 31;
1068 mqpcb->source_gid_idx_al =
1074 mqpcb->dest_gid_al.byte[cnt] =
1079 mqpcb->flow_label_al = attr->alt_ah_attr.grh.flow_label;
1082 mqpcb->hop_limit_al = attr->alt_ah_attr.grh.hop_limit;
1085 mqpcb->traffic_class_al =
1093 mqpcb->min_rnr_nak_timer_field = attr->min_rnr_timer;
1099 mqpcb->send_psn = attr->sq_psn;
1104 mqpcb->dest_qp_nr = attr->dest_qp_num;
1109 mqpcb->path_migration_state = attr->path_mig_state;
1115 mqpcb->max_nr_outst_send_wr = attr->cap.max_send_wr+1;
1118 mqpcb->max_nr_outst_recv_wr = attr->cap.max_recv_wr+1;
1125 ehca_dmp(mqpcb, 4*70, "qp_num=%x", ibqp->qp_num);
1131 mqpcb, my_qp->galpas.kernel);
1152 mqpcb->qp_enable = 1;
1153 mqpcb->qp_state = EHCA_QPS_INIT;
1161 mqpcb,
1189 ehca_free_fw_ctrlblock(mqpcb);