This source file includes following definitions.
- rxe_init_av
- rxe_av_chk_attr
- rxe_av_from_attr
- rxe_av_to_attr
- rxe_av_fill_ip_info
- rxe_get_av
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 #include "rxe.h"
35 #include "rxe_loc.h"
36
37 void rxe_init_av(struct rdma_ah_attr *attr, struct rxe_av *av)
38 {
39 rxe_av_from_attr(rdma_ah_get_port_num(attr), av, attr);
40 rxe_av_fill_ip_info(av, attr);
41 memcpy(av->dmac, attr->roce.dmac, ETH_ALEN);
42 }
43
44 int rxe_av_chk_attr(struct rxe_dev *rxe, struct rdma_ah_attr *attr)
45 {
46 struct rxe_port *port;
47
48 port = &rxe->port;
49
50 if (rdma_ah_get_ah_flags(attr) & IB_AH_GRH) {
51 u8 sgid_index = rdma_ah_read_grh(attr)->sgid_index;
52
53 if (sgid_index > port->attr.gid_tbl_len) {
54 pr_warn("invalid sgid index = %d\n", sgid_index);
55 return -EINVAL;
56 }
57 }
58
59 return 0;
60 }
61
62 void rxe_av_from_attr(u8 port_num, struct rxe_av *av,
63 struct rdma_ah_attr *attr)
64 {
65 const struct ib_global_route *grh = rdma_ah_read_grh(attr);
66
67 memset(av, 0, sizeof(*av));
68 memcpy(av->grh.dgid.raw, grh->dgid.raw, sizeof(grh->dgid.raw));
69 av->grh.flow_label = grh->flow_label;
70 av->grh.sgid_index = grh->sgid_index;
71 av->grh.hop_limit = grh->hop_limit;
72 av->grh.traffic_class = grh->traffic_class;
73 av->port_num = port_num;
74 }
75
76 void rxe_av_to_attr(struct rxe_av *av, struct rdma_ah_attr *attr)
77 {
78 struct ib_global_route *grh = rdma_ah_retrieve_grh(attr);
79
80 attr->type = RDMA_AH_ATTR_TYPE_ROCE;
81
82 memcpy(grh->dgid.raw, av->grh.dgid.raw, sizeof(av->grh.dgid.raw));
83 grh->flow_label = av->grh.flow_label;
84 grh->sgid_index = av->grh.sgid_index;
85 grh->hop_limit = av->grh.hop_limit;
86 grh->traffic_class = av->grh.traffic_class;
87
88 rdma_ah_set_ah_flags(attr, IB_AH_GRH);
89 rdma_ah_set_port_num(attr, av->port_num);
90 }
91
92 void rxe_av_fill_ip_info(struct rxe_av *av, struct rdma_ah_attr *attr)
93 {
94 const struct ib_gid_attr *sgid_attr = attr->grh.sgid_attr;
95
96 rdma_gid2ip((struct sockaddr *)&av->sgid_addr, &sgid_attr->gid);
97 rdma_gid2ip((struct sockaddr *)&av->dgid_addr,
98 &rdma_ah_read_grh(attr)->dgid);
99 av->network_type = rdma_gid_attr_network_type(sgid_attr);
100 }
101
102 struct rxe_av *rxe_get_av(struct rxe_pkt_info *pkt)
103 {
104 if (!pkt || !pkt->qp)
105 return NULL;
106
107 if (qp_type(pkt->qp) == IB_QPT_RC || qp_type(pkt->qp) == IB_QPT_UC)
108 return &pkt->qp->pri_av;
109
110 return (pkt->wqe) ? &pkt->wqe->av : NULL;
111 }