Commit c2f8fc4e authored by Dasaratharaman Chandramouli's avatar Dasaratharaman Chandramouli Committed by Doug Ledford

IB/SA: Rename ib_sa_path_rec to sa_path_rec

Rename ib_sa_path_rec to a more generic sa_path_rec.
This is part of extending ib_sa to also support OPA
path records in addition to the IB defined path records.
Reviewed-by: default avatarDon Hiatt <don.hiatt@intel.com>
Reviewed-by: default avatarIra Weiny <ira.weiny@intel.com>
Signed-off-by: default avatarDasaratharaman Chandramouli <dasaratharaman.chandramouli@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 82ffc226
...@@ -241,7 +241,7 @@ struct cm_work { ...@@ -241,7 +241,7 @@ struct cm_work {
__be32 local_id; /* Established / timewait */ __be32 local_id; /* Established / timewait */
__be32 remote_id; __be32 remote_id;
struct ib_cm_event cm_event; struct ib_cm_event cm_event;
struct ib_sa_path_rec path[0]; struct sa_path_rec path[0];
}; };
struct cm_timewait_info { struct cm_timewait_info {
...@@ -440,7 +440,7 @@ static void cm_init_av_for_response(struct cm_port *port, struct ib_wc *wc, ...@@ -440,7 +440,7 @@ static void cm_init_av_for_response(struct cm_port *port, struct ib_wc *wc,
grh, &av->ah_attr); grh, &av->ah_attr);
} }
static int cm_init_av_by_path(struct ib_sa_path_rec *path, struct cm_av *av, static int cm_init_av_by_path(struct sa_path_rec *path, struct cm_av *av,
struct cm_id_private *cm_id_priv) struct cm_id_private *cm_id_priv)
{ {
struct cm_device *cm_dev; struct cm_device *cm_dev;
...@@ -1172,8 +1172,8 @@ static void cm_format_req(struct cm_req_msg *req_msg, ...@@ -1172,8 +1172,8 @@ static void cm_format_req(struct cm_req_msg *req_msg,
struct cm_id_private *cm_id_priv, struct cm_id_private *cm_id_priv,
struct ib_cm_req_param *param) struct ib_cm_req_param *param)
{ {
struct ib_sa_path_rec *pri_path = param->primary_path; struct sa_path_rec *pri_path = param->primary_path;
struct ib_sa_path_rec *alt_path = param->alternate_path; struct sa_path_rec *alt_path = param->alternate_path;
cm_format_mad_hdr(&req_msg->hdr, CM_REQ_ATTR_ID, cm_format_mad_hdr(&req_msg->hdr, CM_REQ_ATTR_ID,
cm_form_tid(cm_id_priv, CM_MSG_SEQUENCE_REQ)); cm_form_tid(cm_id_priv, CM_MSG_SEQUENCE_REQ));
...@@ -1401,8 +1401,8 @@ static inline int cm_is_active_peer(__be64 local_ca_guid, __be64 remote_ca_guid, ...@@ -1401,8 +1401,8 @@ static inline int cm_is_active_peer(__be64 local_ca_guid, __be64 remote_ca_guid,
} }
static void cm_format_paths_from_req(struct cm_req_msg *req_msg, static void cm_format_paths_from_req(struct cm_req_msg *req_msg,
struct ib_sa_path_rec *primary_path, struct sa_path_rec *primary_path,
struct ib_sa_path_rec *alt_path) struct sa_path_rec *alt_path)
{ {
memset(primary_path, 0, sizeof(*primary_path)); memset(primary_path, 0, sizeof(*primary_path));
primary_path->dgid = req_msg->primary_local_gid; primary_path->dgid = req_msg->primary_local_gid;
...@@ -2815,7 +2815,7 @@ static int cm_mra_handler(struct cm_work *work) ...@@ -2815,7 +2815,7 @@ static int cm_mra_handler(struct cm_work *work)
static void cm_format_lap(struct cm_lap_msg *lap_msg, static void cm_format_lap(struct cm_lap_msg *lap_msg,
struct cm_id_private *cm_id_priv, struct cm_id_private *cm_id_priv,
struct ib_sa_path_rec *alternate_path, struct sa_path_rec *alternate_path,
const void *private_data, const void *private_data,
u8 private_data_len) u8 private_data_len)
{ {
...@@ -2845,7 +2845,7 @@ static void cm_format_lap(struct cm_lap_msg *lap_msg, ...@@ -2845,7 +2845,7 @@ static void cm_format_lap(struct cm_lap_msg *lap_msg,
} }
int ib_send_cm_lap(struct ib_cm_id *cm_id, int ib_send_cm_lap(struct ib_cm_id *cm_id,
struct ib_sa_path_rec *alternate_path, struct sa_path_rec *alternate_path,
const void *private_data, const void *private_data,
u8 private_data_len) u8 private_data_len)
{ {
...@@ -2899,7 +2899,7 @@ out: spin_unlock_irqrestore(&cm_id_priv->lock, flags); ...@@ -2899,7 +2899,7 @@ out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
EXPORT_SYMBOL(ib_send_cm_lap); EXPORT_SYMBOL(ib_send_cm_lap);
static void cm_format_path_from_lap(struct cm_id_private *cm_id_priv, static void cm_format_path_from_lap(struct cm_id_private *cm_id_priv,
struct ib_sa_path_rec *path, struct sa_path_rec *path,
struct cm_lap_msg *lap_msg) struct cm_lap_msg *lap_msg)
{ {
memset(path, 0, sizeof *path); memset(path, 0, sizeof *path);
...@@ -3712,7 +3712,7 @@ static void cm_recv_handler(struct ib_mad_agent *mad_agent, ...@@ -3712,7 +3712,7 @@ static void cm_recv_handler(struct ib_mad_agent *mad_agent,
atomic_long_inc(&port->counter_group[CM_RECV]. atomic_long_inc(&port->counter_group[CM_RECV].
counter[attr_id - CM_ATTR_ID_OFFSET]); counter[attr_id - CM_ATTR_ID_OFFSET]);
work = kmalloc(sizeof(*work) + sizeof(struct ib_sa_path_rec) * paths, work = kmalloc(sizeof(*work) + sizeof(struct sa_path_rec) * paths,
GFP_KERNEL); GFP_KERNEL);
if (!work) { if (!work) {
ib_free_recv_mad(mad_recv_wc); ib_free_recv_mad(mad_recv_wc);
......
...@@ -1128,7 +1128,7 @@ static inline int cma_any_port(struct sockaddr *addr) ...@@ -1128,7 +1128,7 @@ static inline int cma_any_port(struct sockaddr *addr)
static void cma_save_ib_info(struct sockaddr *src_addr, static void cma_save_ib_info(struct sockaddr *src_addr,
struct sockaddr *dst_addr, struct sockaddr *dst_addr,
struct rdma_cm_id *listen_id, struct rdma_cm_id *listen_id,
struct ib_sa_path_rec *path) struct sa_path_rec *path)
{ {
struct sockaddr_ib *listen_ib, *ib; struct sockaddr_ib *listen_ib, *ib;
...@@ -2301,7 +2301,7 @@ void rdma_set_service_type(struct rdma_cm_id *id, int tos) ...@@ -2301,7 +2301,7 @@ void rdma_set_service_type(struct rdma_cm_id *id, int tos)
} }
EXPORT_SYMBOL(rdma_set_service_type); EXPORT_SYMBOL(rdma_set_service_type);
static void cma_query_handler(int status, struct ib_sa_path_rec *path_rec, static void cma_query_handler(int status, struct sa_path_rec *path_rec,
void *context) void *context)
{ {
struct cma_work *work = context; struct cma_work *work = context;
...@@ -2328,7 +2328,7 @@ static int cma_query_ib_route(struct rdma_id_private *id_priv, int timeout_ms, ...@@ -2328,7 +2328,7 @@ static int cma_query_ib_route(struct rdma_id_private *id_priv, int timeout_ms,
struct cma_work *work) struct cma_work *work)
{ {
struct rdma_dev_addr *dev_addr = &id_priv->id.route.addr.dev_addr; struct rdma_dev_addr *dev_addr = &id_priv->id.route.addr.dev_addr;
struct ib_sa_path_rec path_rec; struct sa_path_rec path_rec;
ib_sa_comp_mask comp_mask; ib_sa_comp_mask comp_mask;
struct sockaddr_in6 *sin6; struct sockaddr_in6 *sin6;
struct sockaddr_ib *sib; struct sockaddr_ib *sib;
...@@ -2453,7 +2453,7 @@ static int cma_resolve_ib_route(struct rdma_id_private *id_priv, int timeout_ms) ...@@ -2453,7 +2453,7 @@ static int cma_resolve_ib_route(struct rdma_id_private *id_priv, int timeout_ms)
} }
int rdma_set_ib_paths(struct rdma_cm_id *id, int rdma_set_ib_paths(struct rdma_cm_id *id,
struct ib_sa_path_rec *path_rec, int num_paths) struct sa_path_rec *path_rec, int num_paths)
{ {
struct rdma_id_private *id_priv; struct rdma_id_private *id_priv;
int ret; int ret;
......
...@@ -129,7 +129,7 @@ struct ib_sa_service_query { ...@@ -129,7 +129,7 @@ struct ib_sa_service_query {
}; };
struct ib_sa_path_query { struct ib_sa_path_query {
void (*callback)(int, struct ib_sa_path_rec *, void *); void (*callback)(int, struct sa_path_rec *, void *);
void *context; void *context;
struct ib_sa_query sa_query; struct ib_sa_query sa_query;
}; };
...@@ -188,8 +188,8 @@ static DEFINE_SPINLOCK(tid_lock); ...@@ -188,8 +188,8 @@ static DEFINE_SPINLOCK(tid_lock);
static u32 tid; static u32 tid;
#define PATH_REC_FIELD(field) \ #define PATH_REC_FIELD(field) \
.struct_offset_bytes = offsetof(struct ib_sa_path_rec, field), \ .struct_offset_bytes = offsetof(struct sa_path_rec, field), \
.struct_size_bytes = sizeof ((struct ib_sa_path_rec *) 0)->field, \ .struct_size_bytes = sizeof((struct sa_path_rec *)0)->field, \
.field_name = "sa_path_rec:" #field .field_name = "sa_path_rec:" #field
static const struct ib_field path_rec_table[] = { static const struct ib_field path_rec_table[] = {
...@@ -618,7 +618,7 @@ static inline int ib_sa_query_cancelled(struct ib_sa_query *query) ...@@ -618,7 +618,7 @@ static inline int ib_sa_query_cancelled(struct ib_sa_query *query)
static void ib_nl_set_path_rec_attrs(struct sk_buff *skb, static void ib_nl_set_path_rec_attrs(struct sk_buff *skb,
struct ib_sa_query *query) struct ib_sa_query *query)
{ {
struct ib_sa_path_rec *sa_rec = query->mad_buf->context[1]; struct sa_path_rec *sa_rec = query->mad_buf->context[1];
struct ib_sa_mad *mad = query->mad_buf->mad; struct ib_sa_mad *mad = query->mad_buf->mad;
ib_sa_comp_mask comp_mask = mad->sa_hdr.comp_mask; ib_sa_comp_mask comp_mask = mad->sa_hdr.comp_mask;
u16 val16; u16 val16;
...@@ -1099,7 +1099,7 @@ static u8 get_src_path_mask(struct ib_device *device, u8 port_num) ...@@ -1099,7 +1099,7 @@ static u8 get_src_path_mask(struct ib_device *device, u8 port_num)
} }
int ib_init_ah_from_path(struct ib_device *device, u8 port_num, int ib_init_ah_from_path(struct ib_device *device, u8 port_num,
struct ib_sa_path_rec *rec, struct sa_path_rec *rec,
struct rdma_ah_attr *ah_attr) struct rdma_ah_attr *ah_attr)
{ {
int ret; int ret;
...@@ -1301,13 +1301,13 @@ static int send_mad(struct ib_sa_query *query, int timeout_ms, gfp_t gfp_mask) ...@@ -1301,13 +1301,13 @@ static int send_mad(struct ib_sa_query *query, int timeout_ms, gfp_t gfp_mask)
return ret ? ret : id; return ret ? ret : id;
} }
void ib_sa_unpack_path(void *attribute, struct ib_sa_path_rec *rec) void ib_sa_unpack_path(void *attribute, struct sa_path_rec *rec)
{ {
ib_unpack(path_rec_table, ARRAY_SIZE(path_rec_table), attribute, rec); ib_unpack(path_rec_table, ARRAY_SIZE(path_rec_table), attribute, rec);
} }
EXPORT_SYMBOL(ib_sa_unpack_path); EXPORT_SYMBOL(ib_sa_unpack_path);
void ib_sa_pack_path(struct ib_sa_path_rec *rec, void *attribute) void ib_sa_pack_path(struct sa_path_rec *rec, void *attribute)
{ {
ib_pack(path_rec_table, ARRAY_SIZE(path_rec_table), rec, attribute); ib_pack(path_rec_table, ARRAY_SIZE(path_rec_table), rec, attribute);
} }
...@@ -1321,7 +1321,7 @@ static void ib_sa_path_rec_callback(struct ib_sa_query *sa_query, ...@@ -1321,7 +1321,7 @@ static void ib_sa_path_rec_callback(struct ib_sa_query *sa_query,
container_of(sa_query, struct ib_sa_path_query, sa_query); container_of(sa_query, struct ib_sa_path_query, sa_query);
if (mad) { if (mad) {
struct ib_sa_path_rec rec; struct sa_path_rec rec;
ib_unpack(path_rec_table, ARRAY_SIZE(path_rec_table), ib_unpack(path_rec_table, ARRAY_SIZE(path_rec_table),
mad->data, &rec); mad->data, &rec);
...@@ -1366,11 +1366,11 @@ static void ib_sa_path_rec_release(struct ib_sa_query *sa_query) ...@@ -1366,11 +1366,11 @@ static void ib_sa_path_rec_release(struct ib_sa_query *sa_query)
*/ */
int ib_sa_path_rec_get(struct ib_sa_client *client, int ib_sa_path_rec_get(struct ib_sa_client *client,
struct ib_device *device, u8 port_num, struct ib_device *device, u8 port_num,
struct ib_sa_path_rec *rec, struct sa_path_rec *rec,
ib_sa_comp_mask comp_mask, ib_sa_comp_mask comp_mask,
int timeout_ms, gfp_t gfp_mask, int timeout_ms, gfp_t gfp_mask,
void (*callback)(int status, void (*callback)(int status,
struct ib_sa_path_rec *resp, struct sa_path_rec *resp,
void *context), void *context),
void *context, void *context,
struct ib_sa_query **sa_query) struct ib_sa_query **sa_query)
......
...@@ -702,10 +702,10 @@ static int ib_ucm_alloc_data(const void **dest, u64 src, u32 len) ...@@ -702,10 +702,10 @@ static int ib_ucm_alloc_data(const void **dest, u64 src, u32 len)
return 0; return 0;
} }
static int ib_ucm_path_get(struct ib_sa_path_rec **path, u64 src) static int ib_ucm_path_get(struct sa_path_rec **path, u64 src)
{ {
struct ib_user_path_rec upath; struct ib_user_path_rec upath;
struct ib_sa_path_rec *sa_path; struct sa_path_rec *sa_path;
*path = NULL; *path = NULL;
...@@ -962,7 +962,7 @@ static ssize_t ib_ucm_send_lap(struct ib_ucm_file *file, ...@@ -962,7 +962,7 @@ static ssize_t ib_ucm_send_lap(struct ib_ucm_file *file,
int in_len, int out_len) int in_len, int out_len)
{ {
struct ib_ucm_context *ctx; struct ib_ucm_context *ctx;
struct ib_sa_path_rec *path = NULL; struct sa_path_rec *path = NULL;
struct ib_ucm_lap cmd; struct ib_ucm_lap cmd;
const void *data = NULL; const void *data = NULL;
int result; int result;
......
...@@ -1197,7 +1197,7 @@ static int ucma_set_option_id(struct ucma_context *ctx, int optname, ...@@ -1197,7 +1197,7 @@ static int ucma_set_option_id(struct ucma_context *ctx, int optname,
static int ucma_set_ib_path(struct ucma_context *ctx, static int ucma_set_ib_path(struct ucma_context *ctx,
struct ib_path_rec_data *path_data, size_t optlen) struct ib_path_rec_data *path_data, size_t optlen)
{ {
struct ib_sa_path_rec sa_path; struct sa_path_rec sa_path;
struct rdma_cm_event event; struct rdma_cm_event event;
int ret; int ret;
......
...@@ -97,7 +97,7 @@ void ib_copy_qp_attr_to_user(struct ib_uverbs_qp_attr *dst, ...@@ -97,7 +97,7 @@ void ib_copy_qp_attr_to_user(struct ib_uverbs_qp_attr *dst,
EXPORT_SYMBOL(ib_copy_qp_attr_to_user); EXPORT_SYMBOL(ib_copy_qp_attr_to_user);
void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst, void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst,
struct ib_sa_path_rec *src) struct sa_path_rec *src)
{ {
memcpy(dst->dgid, src->dgid.raw, sizeof src->dgid); memcpy(dst->dgid, src->dgid.raw, sizeof src->dgid);
memcpy(dst->sgid, src->sgid.raw, sizeof src->sgid); memcpy(dst->sgid, src->sgid.raw, sizeof src->sgid);
...@@ -122,7 +122,7 @@ void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst, ...@@ -122,7 +122,7 @@ void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst,
} }
EXPORT_SYMBOL(ib_copy_path_rec_to_user); EXPORT_SYMBOL(ib_copy_path_rec_to_user);
void ib_copy_path_rec_from_user(struct ib_sa_path_rec *dst, void ib_copy_path_rec_from_user(struct sa_path_rec *dst,
struct ib_user_path_rec *src) struct ib_user_path_rec *src)
{ {
memcpy(dst->dgid.raw, src->dgid, sizeof dst->dgid); memcpy(dst->dgid.raw, src->dgid, sizeof dst->dgid);
......
...@@ -423,7 +423,7 @@ struct ipoib_ah { ...@@ -423,7 +423,7 @@ struct ipoib_ah {
struct ipoib_path { struct ipoib_path {
struct net_device *dev; struct net_device *dev;
struct ib_sa_path_rec pathrec; struct sa_path_rec pathrec;
struct ipoib_ah *ah; struct ipoib_ah *ah;
struct sk_buff_head queue; struct sk_buff_head queue;
......
...@@ -1068,7 +1068,7 @@ static struct ib_qp *ipoib_cm_create_tx_qp(struct net_device *dev, struct ipoib_ ...@@ -1068,7 +1068,7 @@ static struct ib_qp *ipoib_cm_create_tx_qp(struct net_device *dev, struct ipoib_
static int ipoib_cm_send_req(struct net_device *dev, static int ipoib_cm_send_req(struct net_device *dev,
struct ib_cm_id *id, struct ib_qp *qp, struct ib_cm_id *id, struct ib_qp *qp,
u32 qpn, u32 qpn,
struct ib_sa_path_rec *pathrec) struct sa_path_rec *pathrec)
{ {
struct ipoib_dev_priv *priv = ipoib_priv(dev); struct ipoib_dev_priv *priv = ipoib_priv(dev);
struct ipoib_cm_data data = {}; struct ipoib_cm_data data = {};
...@@ -1128,7 +1128,7 @@ static int ipoib_cm_modify_tx_init(struct net_device *dev, ...@@ -1128,7 +1128,7 @@ static int ipoib_cm_modify_tx_init(struct net_device *dev,
} }
static int ipoib_cm_tx_init(struct ipoib_cm_tx *p, u32 qpn, static int ipoib_cm_tx_init(struct ipoib_cm_tx *p, u32 qpn,
struct ib_sa_path_rec *pathrec) struct sa_path_rec *pathrec)
{ {
struct ipoib_dev_priv *priv = ipoib_priv(p->dev); struct ipoib_dev_priv *priv = ipoib_priv(p->dev);
int ret; int ret;
...@@ -1332,7 +1332,7 @@ static void ipoib_cm_tx_start(struct work_struct *work) ...@@ -1332,7 +1332,7 @@ static void ipoib_cm_tx_start(struct work_struct *work)
struct ipoib_path *path; struct ipoib_path *path;
int ret; int ret;
struct ib_sa_path_rec pathrec; struct sa_path_rec pathrec;
u32 qpn; u32 qpn;
netif_tx_lock_bh(dev); netif_tx_lock_bh(dev);
......
...@@ -716,7 +716,7 @@ void ipoib_flush_paths(struct net_device *dev) ...@@ -716,7 +716,7 @@ void ipoib_flush_paths(struct net_device *dev)
} }
static void path_rec_completion(int status, static void path_rec_completion(int status,
struct ib_sa_path_rec *pathrec, struct sa_path_rec *pathrec,
void *path_ptr) void *path_ptr)
{ {
struct ipoib_path *path = path_ptr; struct ipoib_path *path = path_ptr;
......
...@@ -643,7 +643,7 @@ static void srp_free_ch_ib(struct srp_target_port *target, ...@@ -643,7 +643,7 @@ static void srp_free_ch_ib(struct srp_target_port *target,
} }
static void srp_path_rec_completion(int status, static void srp_path_rec_completion(int status,
struct ib_sa_path_rec *pathrec, struct sa_path_rec *pathrec,
void *ch_ptr) void *ch_ptr)
{ {
struct srp_rdma_ch *ch = ch_ptr; struct srp_rdma_ch *ch = ch_ptr;
......
...@@ -152,7 +152,7 @@ struct srp_rdma_ch { ...@@ -152,7 +152,7 @@ struct srp_rdma_ch {
struct completion done; struct completion done;
int status; int status;
struct ib_sa_path_rec path; struct sa_path_rec path;
struct ib_sa_query *path_query; struct ib_sa_query *path_query;
int path_query_id; int path_query_id;
......
...@@ -117,8 +117,8 @@ struct ib_cm_req_event_param { ...@@ -117,8 +117,8 @@ struct ib_cm_req_event_param {
u8 port; u8 port;
struct ib_sa_path_rec *primary_path; struct sa_path_rec *primary_path;
struct ib_sa_path_rec *alternate_path; struct sa_path_rec *alternate_path;
__be64 remote_ca_guid; __be64 remote_ca_guid;
u32 remote_qkey; u32 remote_qkey;
...@@ -197,7 +197,7 @@ struct ib_cm_mra_event_param { ...@@ -197,7 +197,7 @@ struct ib_cm_mra_event_param {
}; };
struct ib_cm_lap_event_param { struct ib_cm_lap_event_param {
struct ib_sa_path_rec *alternate_path; struct sa_path_rec *alternate_path;
}; };
enum ib_cm_apr_status { enum ib_cm_apr_status {
...@@ -363,8 +363,8 @@ struct ib_cm_id *ib_cm_insert_listen(struct ib_device *device, ...@@ -363,8 +363,8 @@ struct ib_cm_id *ib_cm_insert_listen(struct ib_device *device,
__be64 service_id); __be64 service_id);
struct ib_cm_req_param { struct ib_cm_req_param {
struct ib_sa_path_rec *primary_path; struct sa_path_rec *primary_path;
struct ib_sa_path_rec *alternate_path; struct sa_path_rec *alternate_path;
__be64 service_id; __be64 service_id;
u32 qp_num; u32 qp_num;
enum ib_qp_type qp_type; enum ib_qp_type qp_type;
...@@ -521,7 +521,7 @@ int ib_send_cm_mra(struct ib_cm_id *cm_id, ...@@ -521,7 +521,7 @@ int ib_send_cm_mra(struct ib_cm_id *cm_id,
* @private_data_len: Size of the private data buffer, in bytes. * @private_data_len: Size of the private data buffer, in bytes.
*/ */
int ib_send_cm_lap(struct ib_cm_id *cm_id, int ib_send_cm_lap(struct ib_cm_id *cm_id,
struct ib_sa_path_rec *alternate_path, struct sa_path_rec *alternate_path,
const void *private_data, const void *private_data,
u8 private_data_len); u8 private_data_len);
...@@ -565,7 +565,7 @@ int ib_send_cm_apr(struct ib_cm_id *cm_id, ...@@ -565,7 +565,7 @@ int ib_send_cm_apr(struct ib_cm_id *cm_id,
u8 private_data_len); u8 private_data_len);
struct ib_cm_sidr_req_param { struct ib_cm_sidr_req_param {
struct ib_sa_path_rec *path; struct sa_path_rec *path;
__be64 service_id; __be64 service_id;
int timeout_ms; int timeout_ms;
const void *private_data; const void *private_data;
......
...@@ -45,9 +45,9 @@ void ib_copy_ah_attr_to_user(struct ib_uverbs_ah_attr *dst, ...@@ -45,9 +45,9 @@ void ib_copy_ah_attr_to_user(struct ib_uverbs_ah_attr *dst,
struct rdma_ah_attr *src); struct rdma_ah_attr *src);
void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst, void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst,
struct ib_sa_path_rec *src); struct sa_path_rec *src);
void ib_copy_path_rec_from_user(struct ib_sa_path_rec *dst, void ib_copy_path_rec_from_user(struct sa_path_rec *dst,
struct ib_user_path_rec *src); struct ib_user_path_rec *src);
#endif /* IB_USER_MARSHALL_H */ #endif /* IB_USER_MARSHALL_H */
...@@ -148,7 +148,7 @@ enum ib_sa_mc_join_states { ...@@ -148,7 +148,7 @@ enum ib_sa_mc_join_states {
#define IB_SA_PATH_REC_PACKET_LIFE_TIME IB_SA_COMP_MASK(21) #define IB_SA_PATH_REC_PACKET_LIFE_TIME IB_SA_COMP_MASK(21)
#define IB_SA_PATH_REC_PREFERENCE IB_SA_COMP_MASK(22) #define IB_SA_PATH_REC_PREFERENCE IB_SA_COMP_MASK(22)
struct ib_sa_path_rec { struct sa_path_rec {
__be64 service_id; __be64 service_id;
union ib_gid dgid; union ib_gid dgid;
union ib_gid sgid; union ib_gid sgid;
...@@ -179,7 +179,7 @@ struct ib_sa_path_rec { ...@@ -179,7 +179,7 @@ struct ib_sa_path_rec {
enum ib_gid_type gid_type; enum ib_gid_type gid_type;
}; };
static inline struct net_device *ib_get_ndev_from_path(struct ib_sa_path_rec *rec) static inline struct net_device *ib_get_ndev_from_path(struct sa_path_rec *rec)
{ {
return rec->net ? dev_get_by_index(rec->net, rec->ifindex) : NULL; return rec->net ? dev_get_by_index(rec->net, rec->ifindex) : NULL;
} }
...@@ -323,11 +323,11 @@ void ib_sa_cancel_query(int id, struct ib_sa_query *query); ...@@ -323,11 +323,11 @@ void ib_sa_cancel_query(int id, struct ib_sa_query *query);
int ib_sa_path_rec_get(struct ib_sa_client *client, int ib_sa_path_rec_get(struct ib_sa_client *client,
struct ib_device *device, u8 port_num, struct ib_device *device, u8 port_num,
struct ib_sa_path_rec *rec, struct sa_path_rec *rec,
ib_sa_comp_mask comp_mask, ib_sa_comp_mask comp_mask,
int timeout_ms, gfp_t gfp_mask, int timeout_ms, gfp_t gfp_mask,
void (*callback)(int status, void (*callback)(int status,
struct ib_sa_path_rec *resp, struct sa_path_rec *resp,
void *context), void *context),
void *context, void *context,
struct ib_sa_query **query); struct ib_sa_query **query);
...@@ -428,20 +428,20 @@ int ib_init_ah_from_mcmember(struct ib_device *device, u8 port_num, ...@@ -428,20 +428,20 @@ int ib_init_ah_from_mcmember(struct ib_device *device, u8 port_num,
* path record. * path record.
*/ */
int ib_init_ah_from_path(struct ib_device *device, u8 port_num, int ib_init_ah_from_path(struct ib_device *device, u8 port_num,
struct ib_sa_path_rec *rec, struct sa_path_rec *rec,
struct rdma_ah_attr *ah_attr); struct rdma_ah_attr *ah_attr);
/** /**
* ib_sa_pack_path - Conert a path record from struct ib_sa_path_rec * ib_sa_pack_path - Conert a path record from struct ib_sa_path_rec
* to IB MAD wire format. * to IB MAD wire format.
*/ */
void ib_sa_pack_path(struct ib_sa_path_rec *rec, void *attribute); void ib_sa_pack_path(struct sa_path_rec *rec, void *attribute);
/** /**
* ib_sa_unpack_path - Convert a path record from MAD format to struct * ib_sa_unpack_path - Convert a path record from MAD format to struct
* ib_sa_path_rec. * ib_sa_path_rec.
*/ */
void ib_sa_unpack_path(void *attribute, struct ib_sa_path_rec *rec); void ib_sa_unpack_path(void *attribute, struct sa_path_rec *rec);
/* Support GuidInfoRecord */ /* Support GuidInfoRecord */
int ib_sa_guid_info_rec_query(struct ib_sa_client *client, int ib_sa_guid_info_rec_query(struct ib_sa_client *client,
......
...@@ -85,7 +85,7 @@ struct rdma_addr { ...@@ -85,7 +85,7 @@ struct rdma_addr {
struct rdma_route { struct rdma_route {
struct rdma_addr addr; struct rdma_addr addr;
struct ib_sa_path_rec *path_rec; struct sa_path_rec *path_rec;
int num_paths; int num_paths;
}; };
......
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
* connection and replaces the call to rdma_resolve_route. * connection and replaces the call to rdma_resolve_route.
*/ */
int rdma_set_ib_paths(struct rdma_cm_id *id, int rdma_set_ib_paths(struct rdma_cm_id *id,
struct ib_sa_path_rec *path_rec, int num_paths); struct sa_path_rec *path_rec, int num_paths);
/* Global qkey for UDP QPs and multicast groups. */ /* Global qkey for UDP QPs and multicast groups. */
#define RDMA_UDP_QKEY 0x01234567 #define RDMA_UDP_QKEY 0x01234567
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment