• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/infiniband/core/

Lines Matching refs:src

36 			     struct ib_ah_attr *src)
38 memcpy(dst->grh.dgid, src->grh.dgid.raw, sizeof src->grh.dgid);
39 dst->grh.flow_label = src->grh.flow_label;
40 dst->grh.sgid_index = src->grh.sgid_index;
41 dst->grh.hop_limit = src->grh.hop_limit;
42 dst->grh.traffic_class = src->grh.traffic_class;
43 dst->dlid = src->dlid;
44 dst->sl = src->sl;
45 dst->src_path_bits = src->src_path_bits;
46 dst->static_rate = src->static_rate;
47 dst->is_global = src->ah_flags & IB_AH_GRH ? 1 : 0;
48 dst->port_num = src->port_num;
53 struct ib_qp_attr *src)
55 dst->cur_qp_state = src->cur_qp_state;
56 dst->path_mtu = src->path_mtu;
57 dst->path_mig_state = src->path_mig_state;
58 dst->qkey = src->qkey;
59 dst->rq_psn = src->rq_psn;
60 dst->sq_psn = src->sq_psn;
61 dst->dest_qp_num = src->dest_qp_num;
62 dst->qp_access_flags = src->qp_access_flags;
64 dst->max_send_wr = src->cap.max_send_wr;
65 dst->max_recv_wr = src->cap.max_recv_wr;
66 dst->max_send_sge = src->cap.max_send_sge;
67 dst->max_recv_sge = src->cap.max_recv_sge;
68 dst->max_inline_data = src->cap.max_inline_data;
70 ib_copy_ah_attr_to_user(&dst->ah_attr, &src->ah_attr);
71 ib_copy_ah_attr_to_user(&dst->alt_ah_attr, &src->alt_ah_attr);
73 dst->pkey_index = src->pkey_index;
74 dst->alt_pkey_index = src->alt_pkey_index;
75 dst->en_sqd_async_notify = src->en_sqd_async_notify;
76 dst->sq_draining = src->sq_draining;
77 dst->max_rd_atomic = src->max_rd_atomic;
78 dst->max_dest_rd_atomic = src->max_dest_rd_atomic;
79 dst->min_rnr_timer = src->min_rnr_timer;
80 dst->port_num = src->port_num;
81 dst->timeout = src->timeout;
82 dst->retry_cnt = src->retry_cnt;
83 dst->rnr_retry = src->rnr_retry;
84 dst->alt_port_num = src->alt_port_num;
85 dst->alt_timeout = src->alt_timeout;
90 struct ib_sa_path_rec *src)
92 memcpy(dst->dgid, src->dgid.raw, sizeof src->dgid);
93 memcpy(dst->sgid, src->sgid.raw, sizeof src->sgid);
95 dst->dlid = src->dlid;
96 dst->slid = src->slid;
97 dst->raw_traffic = src->raw_traffic;
98 dst->flow_label = src->flow_label;
99 dst->hop_limit = src->hop_limit;
100 dst->traffic_class = src->traffic_class;
101 dst->reversible = src->reversible;
102 dst->numb_path = src->numb_path;
103 dst->pkey = src->pkey;
104 dst->sl = src->sl;
105 dst->mtu_selector = src->mtu_selector;
106 dst->mtu = src->mtu;
107 dst->rate_selector = src->rate_selector;
108 dst->rate = src->rate;
109 dst->packet_life_time = src->packet_life_time;
110 dst->preference = src->preference;
111 dst->packet_life_time_selector = src->packet_life_time_selector;
116 struct ib_user_path_rec *src)
118 memcpy(dst->dgid.raw, src->dgid, sizeof dst->dgid);
119 memcpy(dst->sgid.raw, src->sgid, sizeof dst->sgid);
121 dst->dlid = src->dlid;
122 dst->slid = src->slid;
123 dst->raw_traffic = src->raw_traffic;
124 dst->flow_label = src->flow_label;
125 dst->hop_limit = src->hop_limit;
126 dst->traffic_class = src->traffic_class;
127 dst->reversible = src->reversible;
128 dst->numb_path = src->numb_path;
129 dst->pkey = src->pkey;
130 dst->sl = src->sl;
131 dst->mtu_selector = src->mtu_selector;
132 dst->mtu = src->mtu;
133 dst->rate_selector = src->rate_selector;
134 dst->rate = src->rate;
135 dst->packet_life_time = src->packet_life_time;
136 dst->preference = src->preference;
137 dst->packet_life_time_selector = src->packet_life_time_selector;