Searched refs:path_data (Results 1 - 6 of 6) sorted by last modified time

/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Dib_ucma.c919 resp->path_data[i].flags = IB_PATH_GMP | IB_PATH_PRIMARY |
922 &resp->path_data[i].path_rec);
1215 struct ib_path_rec_data *path_data, size_t optlen)
1221 if (optlen % sizeof(*path_data))
1224 for (; optlen; optlen -= sizeof(*path_data), path_data++) {
1225 if (path_data->flags == (IB_PATH_GMP | IB_PATH_PRIMARY |
1235 ib_sa_unpack_path(path_data->path_rec, &sa_path);
1214 ucma_set_ib_path(struct ucma_context *ctx, struct ib_path_rec_data *path_data, size_t optlen) argument
/freebsd-11-stable/sys/ofed/include/uapi/rdma/
H A Drdma_user_cm.h184 struct ib_path_rec_data path_data[0]; member in struct:rdma_ucm_query_path_resp
/freebsd-11-stable/contrib/ofed/librdmacm/
H A Drsocket.c3546 struct ibv_path_data *path_data)
3550 memset(path_data, 0, sizeof(*path_data));
3551 path_data->path.dgid = sa_path->dgid;
3552 path_data->path.sgid = sa_path->sgid;
3553 path_data->path.dlid = sa_path->dlid;
3554 path_data->path.slid = sa_path->slid;
3556 path_data->path.flowlabel_hoplimit = htobe32(fl_hop | sa_path->hop_limit);
3557 path_data->path.tclass = sa_path->traffic_class;
3558 path_data
3545 rs_convert_sa_path(struct ibv_sa_path_rec *sa_path, struct ibv_path_data *path_data) argument
3573 struct ibv_path_data path_data; local
[all...]
H A Drdma_cma_abi.h199 struct ibv_path_data path_data[0]; member in struct:ucma_abi_query_path_resp
H A Dcma.c682 static void ucma_convert_path(struct ibv_path_data *path_data, argument
687 sa_path->dgid = path_data->path.dgid;
688 sa_path->sgid = path_data->path.sgid;
689 sa_path->dlid = path_data->path.dlid;
690 sa_path->slid = path_data->path.slid;
693 fl_hop = be32toh(path_data->path.flowlabel_hoplimit);
697 sa_path->traffic_class = path_data->path.tclass;
698 sa_path->reversible = path_data->path.reversible_numpath >> 7;
700 sa_path->pkey = path_data->path.pkey;
701 sa_path->sl = be16toh(path_data
[all...]
H A Dacm.c291 struct ibv_path_data *path_data = NULL; local
302 if (!path_data)
303 path_data = (struct ibv_path_data *) ep_data;
337 rai->ai_route = calloc(path_cnt, sizeof(*path_data));
339 memcpy(rai->ai_route, path_data, path_cnt * sizeof(*path_data));
340 rai->ai_route_len = path_cnt * sizeof(*path_data);

Completed in 107 milliseconds