public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Jon Mason <jon-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
To: Hal Rosenstock <hnrose-Wuw85uim5zDR7s880joybQ@public.gmane.org>
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCHv2] opensm/osm_mesh.c: Add dump_mesh routine at OSM_LOG_DEBUG level
Date: Tue, 29 Sep 2009 16:58:38 -0500	[thread overview]
Message-ID: <20090929215838.GE10188@opengridcomputing.com> (raw)
In-Reply-To: <20090929215540.GA28635-Wuw85uim5zDR7s880joybQ@public.gmane.org>

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

  parent reply	other threads:[~2009-09-29 21:58 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
2009-10-04  1:04   ` Sasha Khapyorsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090929215838.GE10188@opengridcomputing.com \
    --to=jon-7bpotxp6k4+p2yhjcf5u+vpxobypeauw@public.gmane.org \
    --cc=hnrose-Wuw85uim5zDR7s880joybQ@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox