Lines Matching defs:dst

41 void ibv_copy_ah_attr_from_kern(struct ibv_ah_attr *dst,
44 memcpy(dst->grh.dgid.raw, src->grh.dgid, sizeof dst->grh.dgid);
45 dst->grh.flow_label = src->grh.flow_label;
46 dst->grh.sgid_index = src->grh.sgid_index;
47 dst->grh.hop_limit = src->grh.hop_limit;
48 dst->grh.traffic_class = src->grh.traffic_class;
50 dst->dlid = src->dlid;
51 dst->sl = src->sl;
52 dst->src_path_bits = src->src_path_bits;
53 dst->static_rate = src->static_rate;
54 dst->is_global = src->is_global;
55 dst->port_num = src->port_num;
58 void ibv_copy_qp_attr_from_kern(struct ibv_qp_attr *dst,
61 dst->cur_qp_state = src->cur_qp_state;
62 dst->path_mtu = src->path_mtu;
63 dst->path_mig_state = src->path_mig_state;
64 dst->qkey = src->qkey;
65 dst->rq_psn = src->rq_psn;
66 dst->sq_psn = src->sq_psn;
67 dst->dest_qp_num = src->dest_qp_num;
68 dst->qp_access_flags = src->qp_access_flags;
70 dst->cap.max_send_wr = src->max_send_wr;
71 dst->cap.max_recv_wr = src->max_recv_wr;
72 dst->cap.max_send_sge = src->max_send_sge;
73 dst->cap.max_recv_sge = src->max_recv_sge;
74 dst->cap.max_inline_data = src->max_inline_data;
76 ibv_copy_ah_attr_from_kern(&dst->ah_attr, &src->ah_attr);
77 ibv_copy_ah_attr_from_kern(&dst->alt_ah_attr, &src->alt_ah_attr);
79 dst->pkey_index = src->pkey_index;
80 dst->alt_pkey_index = src->alt_pkey_index;
81 dst->en_sqd_async_notify = src->en_sqd_async_notify;
82 dst->sq_draining = src->sq_draining;
83 dst->max_rd_atomic = src->max_rd_atomic;
84 dst->max_dest_rd_atomic = src->max_dest_rd_atomic;
85 dst->min_rnr_timer = src->min_rnr_timer;
86 dst->port_num = src->port_num;
87 dst->timeout = src->timeout;
88 dst->retry_cnt = src->retry_cnt;
89 dst->rnr_retry = src->rnr_retry;
90 dst->alt_port_num = src->alt_port_num;
91 dst->alt_timeout = src->alt_timeout;
94 void ibv_copy_path_rec_from_kern(struct ibv_sa_path_rec *dst,
97 memcpy(dst->dgid.raw, src->dgid, sizeof dst->dgid);
98 memcpy(dst->sgid.raw, src->sgid, sizeof dst->sgid);
100 dst->dlid = src->dlid;
101 dst->slid = src->slid;
102 dst->raw_traffic = src->raw_traffic;
103 dst->flow_label = src->flow_label;
104 dst->hop_limit = src->hop_limit;
105 dst->traffic_class = src->traffic_class;
106 dst->reversible = src->reversible;
107 dst->numb_path = src->numb_path;
108 dst->pkey = src->pkey;
109 dst->sl = src->sl;
110 dst->mtu_selector = src->mtu_selector;
111 dst->mtu = src->mtu;
112 dst->rate_selector = src->rate_selector;
113 dst->rate = src->rate;
114 dst->packet_life_time = src->packet_life_time;
115 dst->preference = src->preference;
116 dst->packet_life_time_selector = src->packet_life_time_selector;
119 void ibv_copy_path_rec_to_kern(struct ibv_kern_path_rec *dst,
122 memcpy(dst->dgid, src->dgid.raw, sizeof src->dgid);
123 memcpy(dst->sgid, src->sgid.raw, sizeof src->sgid);
125 dst->dlid = src->dlid;
126 dst->slid = src->slid;
127 dst->raw_traffic = src->raw_traffic;
128 dst->flow_label = src->flow_label;
129 dst->hop_limit = src->hop_limit;
130 dst->traffic_class = src->traffic_class;
131 dst->reversible = src->reversible;
132 dst->numb_path = src->numb_path;
133 dst->pkey = src->pkey;
134 dst->sl = src->sl;
135 dst->mtu_selector = src->mtu_selector;
136 dst->mtu = src->mtu;
137 dst->rate_selector = src->rate_selector;
138 dst->rate = src->rate;
139 dst->packet_life_time = src->packet_life_time;
140 dst->preference = src->preference;
141 dst->packet_life_time_selector = src->packet_life_time_selector;