• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/core/

Lines Matching defs:primary_path

1001 	struct ib_sa_path_rec *pri_path = param->primary_path;
1021 req_msg->pkey = param->primary_path->pkey;
1022 cm_req_set_path_mtu(req_msg, param->primary_path->mtu);
1079 if (!param->primary_path)
1090 (param->alternate_path->pkey != param->primary_path->pkey ||
1091 param->alternate_path->mtu != param->primary_path->mtu))
1126 ret = cm_init_av_by_path(param->primary_path, &cm_id_priv->av);
1138 param->primary_path->packet_life_time) * 2 +
1145 cm_id_priv->path_mtu = param->primary_path->mtu;
1146 cm_id_priv->pkey = param->primary_path->pkey;
1224 struct ib_sa_path_rec *primary_path,
1227 memset(primary_path, 0, sizeof *primary_path);
1228 primary_path->dgid = req_msg->primary_local_gid;
1229 primary_path->sgid = req_msg->primary_remote_gid;
1230 primary_path->dlid = req_msg->primary_local_lid;
1231 primary_path->slid = req_msg->primary_remote_lid;
1232 primary_path->flow_label = cm_req_get_primary_flow_label(req_msg);
1233 primary_path->hop_limit = req_msg->primary_hop_limit;
1234 primary_path->traffic_class = req_msg->primary_traffic_class;
1235 primary_path->reversible = 1;
1236 primary_path->pkey = req_msg->pkey;
1237 primary_path->sl = cm_req_get_primary_sl(req_msg);
1238 primary_path->mtu_selector = IB_SA_EQ;
1239 primary_path->mtu = cm_req_get_path_mtu(req_msg);
1240 primary_path->rate_selector = IB_SA_EQ;
1241 primary_path->rate = cm_req_get_primary_packet_rate(req_msg);
1242 primary_path->packet_life_time_selector = IB_SA_EQ;
1243 primary_path->packet_life_time =
1245 primary_path->packet_life_time -= (primary_path->packet_life_time > 0);
1281 param->primary_path = &work->path[0];