@@ -8437,7 +8437,7 @@ bool get_lid(struct port_grp *pg, unsigned p,
osm_port = ep->osm_port;
if (!(osm_port && osm_port->priv == ep)) {
OSM_LOG(&pg->sw->torus->osm->log, OSM_LOG_ERROR,
- "Error: get_lid: ep->osm_port->priv != ep "
+ "Error: ep->osm_port->priv != ep "
"for sw 0x%04llu port %d\n",
ntohllu(((struct t_switch *)(ep->sw))->n_id), ep->port);
return false;
@@ -8528,8 +8528,8 @@ uint8_t torus_path_sl(void *context, uint8_t path_sl_hint,
if (!sport) {
guid = osm_node_get_node_guid(osm_sport->p_node);
OSM_LOG(log, LOG_INFO,
- "Error: get_torus_sl: osm_sport (GUID "
- "0x%04llx) not in our fabric description\n",
+ "Error: osm_sport (GUID 0x%04llx) "
+ "not in our fabric description\n",
ntohllu(guid));
goto out;
}
@@ -8540,8 +8540,8 @@ uint8_t torus_path_sl(void *context, uint8_t path_sl_hint,
if (!dport) {
guid = osm_node_get_node_guid(osm_dport->p_node);
OSM_LOG(log, LOG_INFO,
- "Error: get_torus_sl: osm_dport (GUID "
- "0x%04llx) not in our fabric description\n",
+ "Error: osm_dport (GUID 0x%04llx) "
+ "not in our fabric description\n",
ntohllu(guid));
goto out;
}
@@ -8553,14 +8553,14 @@ uint8_t torus_path_sl(void *context, uint8_t path_sl_hint,
if (sport->type != SRCSINK) {
guid = osm_node_get_node_guid(osm_sport->p_node);
OSM_LOG(log, LOG_INFO,
- "Error: get_torus_sl: osm_sport (GUID 0x%04llx) "
+ "Error: osm_sport (GUID 0x%04llx) "
"not a data src/sink port\n", ntohllu(guid));
goto out;
}
if (dport->type != SRCSINK) {
guid = osm_node_get_node_guid(osm_dport->p_node);
OSM_LOG(log, LOG_INFO,
- "Error: get_torus_sl: osm_dport (GUID 0x%04llx) "
+ "Error: osm_dport (GUID 0x%04llx) "
"not a data src/sink port\n", ntohllu(guid));
goto out;
}