* [PATCHv2] opensm/osm_mesh.c: Add dump_mesh routine at OSM_LOG_DEBUG level
@ 2009-09-29 21:55 Hal Rosenstock
[not found] ` <20090929215540.GA28635-Wuw85uim5zDR7s880joybQ@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Hal Rosenstock @ 2009-09-29 21:55 UTC (permalink / raw)
To: linux-rdma-u79uwXL29TY76Z2rM5mHXA
Signed-off-by: Hal Rosenstock <hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
Changes since v1:
Use snprintf rather than sprintf
Also, moved output of ]
diff --git a/opensm/opensm/osm_mesh.c b/opensm/opensm/osm_mesh.c
index 260e2f8..53f0f58 100644
--- a/opensm/opensm/osm_mesh.c
+++ b/opensm/opensm/osm_mesh.c
@@ -1565,6 +1565,63 @@ err:
return -1;
}
+static void dump_mesh(lash_t *p_lash)
+{
+ osm_log_t *p_log = &p_lash->p_osm->log;
+ int sw;
+ int num_switches = p_lash->num_switches;
+ int dimension;
+ int i, j, k, n;
+ switch_t *s, *s2;
+ char buf[256];
+
+ OSM_LOG_ENTER(p_log);
+
+ for (sw = 0; sw < num_switches; sw++) {
+ s = p_lash->switches[sw];
+ dimension = s->node->dimension;
+ n = sprintf(buf, "[");
+ for (i = 0; i < dimension; i++) {
+ n += snprintf(buf + n, sizeof(buf) - n,
+ "%2d", s->node->coord[i]);
+ if (n > sizeof(buf))
+ n = sizeof(buf);
+ if (i != dimension - 1) {
+ n += snprintf(buf + n, sizeof(buf) - n, "%s", ",");
+ if (n > sizeof(buf))
+ n = sizeof(buf);
+ }
+ }
+ n += snprintf(buf + n, sizeof(buf) - n, "]");
+ if (n > sizeof(buf))
+ n = sizeof(buf);
+ for (j = 0; j < s->node->num_links; j++) {
+ s2 = p_lash->switches[s->node->links[j]->switch_id];
+ n += snprintf(buf + n, sizeof(buf) - n, " [%d]->[", j);
+ if (n > sizeof(buf))
+ n = sizeof(buf);
+ for (k = 0; k < dimension; k++) {
+ n += snprintf(buf + n, sizeof(buf) - n, "%2d",
+ s2->node->coord[k]);
+ if (n > sizeof(buf))
+ n = sizeof(buf);
+ if (k != dimension - 1) {
+ n += snprintf(buf + n, sizeof(buf) - n,
+ ",");
+ if (n > sizeof(buf))
+ n = sizeof(buf);
+ }
+ }
+ n += snprintf(buf + n, sizeof(buf) - n, "]");
+ if (n > sizeof(buf))
+ n = sizeof(buf);
+ }
+ OSM_LOG(p_log, OSM_LOG_DEBUG, "%s\n", buf);
+ }
+
+ OSM_LOG_EXIT(p_log);
+}
+
/*
* osm_do_mesh_analysis
*/
@@ -1653,6 +1710,9 @@ int osm_do_mesh_analysis(lash_t *p_lash)
OSM_LOG(p_log, OSM_LOG_INFO, "%s", buf);
}
+ if (osm_log_is_active(p_log, OSM_LOG_DEBUG))
+ dump_mesh(p_lash);
+
done:
mesh_delete(mesh);
OSM_LOG_EXIT(p_log);
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <20090929215540.GA28635-Wuw85uim5zDR7s880joybQ@public.gmane.org>]
* Re: [PATCHv2] opensm/osm_mesh.c: Add dump_mesh routine at OSM_LOG_DEBUG level [not found] ` <20090929215540.GA28635-Wuw85uim5zDR7s880joybQ@public.gmane.org> @ 2009-09-29 21:58 ` Jon Mason 2009-10-04 1:04 ` Sasha Khapyorsky 1 sibling, 0 replies; 3+ messages in thread From: Jon Mason @ 2009-09-29 21:58 UTC (permalink / raw) To: Hal Rosenstock; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA Looks like it is working now... Jeff, pull the trigger! Thanks, Jon On Tue, Sep 29, 2009 at 05:55:40PM -0400, Hal Rosenstock wrote: > > Signed-off-by: Hal Rosenstock <hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > Changes since v1: > Use snprintf rather than sprintf > Also, moved output of ] > > diff --git a/opensm/opensm/osm_mesh.c b/opensm/opensm/osm_mesh.c > index 260e2f8..53f0f58 100644 > --- a/opensm/opensm/osm_mesh.c > +++ b/opensm/opensm/osm_mesh.c > @@ -1565,6 +1565,63 @@ err: > return -1; > } > > +static void dump_mesh(lash_t *p_lash) > +{ > + osm_log_t *p_log = &p_lash->p_osm->log; > + int sw; > + int num_switches = p_lash->num_switches; > + int dimension; > + int i, j, k, n; > + switch_t *s, *s2; > + char buf[256]; > + > + OSM_LOG_ENTER(p_log); > + > + for (sw = 0; sw < num_switches; sw++) { > + s = p_lash->switches[sw]; > + dimension = s->node->dimension; > + n = sprintf(buf, "["); > + for (i = 0; i < dimension; i++) { > + n += snprintf(buf + n, sizeof(buf) - n, > + "%2d", s->node->coord[i]); > + if (n > sizeof(buf)) > + n = sizeof(buf); > + if (i != dimension - 1) { > + n += snprintf(buf + n, sizeof(buf) - n, "%s", ","); > + if (n > sizeof(buf)) > + n = sizeof(buf); > + } > + } > + n += snprintf(buf + n, sizeof(buf) - n, "]"); > + if (n > sizeof(buf)) > + n = sizeof(buf); > + for (j = 0; j < s->node->num_links; j++) { > + s2 = p_lash->switches[s->node->links[j]->switch_id]; > + n += snprintf(buf + n, sizeof(buf) - n, " [%d]->[", j); > + if (n > sizeof(buf)) > + n = sizeof(buf); > + for (k = 0; k < dimension; k++) { > + n += snprintf(buf + n, sizeof(buf) - n, "%2d", > + s2->node->coord[k]); > + if (n > sizeof(buf)) > + n = sizeof(buf); > + if (k != dimension - 1) { > + n += snprintf(buf + n, sizeof(buf) - n, > + ","); > + if (n > sizeof(buf)) > + n = sizeof(buf); > + } > + } > + n += snprintf(buf + n, sizeof(buf) - n, "]"); > + if (n > sizeof(buf)) > + n = sizeof(buf); > + } > + OSM_LOG(p_log, OSM_LOG_DEBUG, "%s\n", buf); > + } > + > + OSM_LOG_EXIT(p_log); > +} > + > /* > * osm_do_mesh_analysis > */ > @@ -1653,6 +1710,9 @@ int osm_do_mesh_analysis(lash_t *p_lash) > OSM_LOG(p_log, OSM_LOG_INFO, "%s", buf); > } > > + if (osm_log_is_active(p_log, OSM_LOG_DEBUG)) > + dump_mesh(p_lash); > + > done: > mesh_delete(mesh); > OSM_LOG_EXIT(p_log); > -- > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCHv2] opensm/osm_mesh.c: Add dump_mesh routine at OSM_LOG_DEBUG level [not found] ` <20090929215540.GA28635-Wuw85uim5zDR7s880joybQ@public.gmane.org> 2009-09-29 21:58 ` Jon Mason @ 2009-10-04 1:04 ` Sasha Khapyorsky 1 sibling, 0 replies; 3+ messages in thread From: Sasha Khapyorsky @ 2009-10-04 1:04 UTC (permalink / raw) To: Hal Rosenstock; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA On 17:55 Tue 29 Sep , Hal Rosenstock wrote: > > Signed-off-by: Hal Rosenstock <hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Applied. Thanks. Sasha -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-10-04 1:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-29 21:55 [PATCHv2] opensm/osm_mesh.c: Add dump_mesh routine at OSM_LOG_DEBUG level Hal Rosenstock
[not found] ` <20090929215540.GA28635-Wuw85uim5zDR7s880joybQ@public.gmane.org>
2009-09-29 21:58 ` Jon Mason
2009-10-04 1:04 ` Sasha Khapyorsky
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox