Rather than actual port number as out port, use port number 0 for out port when CA or router as in/out ports are reserved
Signed-off-by: Hal Rosenstock <[email protected]> --- diff --git a/opensm/osm_dump.c b/opensm/osm_dump.c index b9bd6ed..aae6a18 100644 --- a/opensm/osm_dump.c +++ b/opensm/osm_dump.c @@ -529,8 +529,7 @@ static void dump_sl2vl_tbl(cl_map_item_t * item, FILE * file, void *cxt) for (i = 0, n = 0; i < 16; i++) n += sprintf(buf + n, " %-2d", ib_slvl_table_get(p_tbl, i)); - fprintf(file, "%-3d %-3d :%s\n", - 0, p_physp->port_num, buf); + fprintf(file, "%-3d %-3d :%s\n", 0, 0, buf); } fprintf(file, "%s\n\n", separator_line); -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
