Lines Matching defs:src_path

906  *      src_path	- IB OFED path.
915 uverbs_copy_path_info_from_ibv(struct ib_uverbs_qp_dest *src_path,
918 ASSERT(src_path != NULL);
922 &src_path->dgid[0], sizeof (src_path->dgid));
924 dest_path->cep_adds_vect.av_flow = src_path->flow_label;
925 dest_path->cep_adds_vect.av_dlid = src_path->dlid;
926 dest_path->cep_adds_vect.av_hop = src_path->hop_limit;
927 dest_path->cep_adds_vect.av_tclass = src_path->traffic_class;
928 dest_path->cep_adds_vect.av_srvl = src_path->sl & 0x0f;
929 dest_path->cep_adds_vect.av_port_num = src_path->port_num;
930 dest_path->cep_adds_vect.av_src_path = src_path->src_path_bits;
931 dest_path->cep_adds_vect.av_send_grh = src_path->is_global;
932 dest_path->cep_adds_vect.av_sgid_ix = src_path->sgid_index;
933 dest_path->cep_adds_vect.av_srate = src_path->static_rate;
1467 * src_path - The IBT path.
1476 uverbs_copy_path_info_from_ibt(ibt_cep_path_t *src_path,
1479 ASSERT(src_path != NULL);
1483 &src_path->cep_adds_vect.av_dgid, sizeof (dest_path->dgid));
1485 dest_path->flow_label = src_path->cep_adds_vect.av_flow;
1486 dest_path->dlid = src_path->cep_adds_vect.av_dlid;
1487 dest_path->hop_limit = src_path->cep_adds_vect.av_hop;
1488 dest_path->traffic_class = src_path->cep_adds_vect.av_tclass;
1489 dest_path->sl = src_path->cep_adds_vect.av_srvl;
1490 dest_path->port_num = src_path->cep_adds_vect.av_port_num;
1491 dest_path->src_path_bits = src_path->cep_adds_vect.av_src_path;
1492 dest_path->is_global = src_path->cep_adds_vect.av_send_grh;
1493 dest_path->sgid_index = src_path->cep_adds_vect.av_sgid_ix;
1494 dest_path->static_rate = src_path->cep_adds_vect.av_srate;