@@ -7971,7 +7971,7 @@ void torus_update_osm_sl2vl(void *context, osm_port_t *sw_mgmt_port,
guid_t guid;
guid = osm_node_get_node_guid(sw_mgmt_port->p_node);
- OSM_LOG(log, LOG_INFO,
+ OSM_LOG(log, OSM_LOG_INFO,
"Error: osm_port (GUID 0x%04llx) "
"not in our fabric description\n", ntohllu(guid));
return;
@@ -8527,7 +8527,7 @@ uint8_t torus_path_sl(void *context, uint8_t path_sl_hint,
sport = osm_port_relink_endpoint(osm_sport);
if (!sport) {
guid = osm_node_get_node_guid(osm_sport->p_node);
- OSM_LOG(log, LOG_INFO,
+ OSM_LOG(log, OSM_LOG_INFO,
"Error: osm_sport (GUID 0x%04llx) "
"not in our fabric description\n",
ntohllu(guid));
@@ -8539,7 +8539,7 @@ uint8_t torus_path_sl(void *context, uint8_t path_sl_hint,
dport = osm_port_relink_endpoint(osm_dport);
if (!dport) {
guid = osm_node_get_node_guid(osm_dport->p_node);
- OSM_LOG(log, LOG_INFO,
+ OSM_LOG(log, OSM_LOG_INFO,
"Error: osm_dport (GUID 0x%04llx) "
"not in our fabric description\n",
ntohllu(guid));
@@ -8552,14 +8552,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,
+ OSM_LOG(log, OSM_LOG_INFO,
"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,
+ OSM_LOG(log, OSM_LOG_INFO,
"Error: osm_dport (GUID 0x%04llx) "
"not a data src/sink port\n", ntohllu(guid));
goto out;