• Home
  • Raw
  • Download

Lines Matching refs:sidr_rep_msg

3040 static void cm_format_sidr_rep(struct cm_sidr_rep_msg *sidr_rep_msg,  in cm_format_sidr_rep()  argument
3044 cm_format_mad_hdr(&sidr_rep_msg->hdr, CM_SIDR_REP_ATTR_ID, in cm_format_sidr_rep()
3046 sidr_rep_msg->request_id = cm_id_priv->id.remote_id; in cm_format_sidr_rep()
3047 sidr_rep_msg->status = param->status; in cm_format_sidr_rep()
3048 cm_sidr_rep_set_qpn(sidr_rep_msg, cpu_to_be32(param->qp_num)); in cm_format_sidr_rep()
3049 sidr_rep_msg->service_id = cm_id_priv->id.service_id; in cm_format_sidr_rep()
3050 sidr_rep_msg->qkey = cpu_to_be32(param->qkey); in cm_format_sidr_rep()
3053 memcpy(sidr_rep_msg->info, param->info, param->info_length); in cm_format_sidr_rep()
3056 memcpy(sidr_rep_msg->private_data, param->private_data, in cm_format_sidr_rep()
3107 struct cm_sidr_rep_msg *sidr_rep_msg; in cm_format_sidr_rep_event() local
3110 sidr_rep_msg = (struct cm_sidr_rep_msg *) in cm_format_sidr_rep_event()
3113 param->status = sidr_rep_msg->status; in cm_format_sidr_rep_event()
3114 param->qkey = be32_to_cpu(sidr_rep_msg->qkey); in cm_format_sidr_rep_event()
3115 param->qpn = be32_to_cpu(cm_sidr_rep_get_qpn(sidr_rep_msg)); in cm_format_sidr_rep_event()
3116 param->info = &sidr_rep_msg->info; in cm_format_sidr_rep_event()
3117 param->info_len = sidr_rep_msg->info_length; in cm_format_sidr_rep_event()
3118 work->cm_event.private_data = &sidr_rep_msg->private_data; in cm_format_sidr_rep_event()
3123 struct cm_sidr_rep_msg *sidr_rep_msg; in cm_sidr_rep_handler() local
3126 sidr_rep_msg = (struct cm_sidr_rep_msg *) in cm_sidr_rep_handler()
3128 cm_id_priv = cm_acquire_id(sidr_rep_msg->request_id, 0); in cm_sidr_rep_handler()