From: Hal Rosenstock <hnrose-Wuw85uim5zDR7s880joybQ@public.gmane.org>
To: sashak-smomgflXvOZWk0Htik3J/w@public.gmane.org
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: [PATCH] opensm/osm_vendor_ibumad.c: Add environment variable to change max retries
Date: Mon, 19 Oct 2009 14:33:42 -0400 [thread overview]
Message-ID: <20091019183342.GA28926@comcast.net> (raw)
Signed-off-by: Hal Rosenstock <hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
diff --git a/opensm/libvendor/osm_vendor_ibumad.c b/opensm/libvendor/osm_vendor_ibumad.c
index 8d3c680..01250fb 100644
--- a/opensm/libvendor/osm_vendor_ibumad.c
+++ b/opensm/libvendor/osm_vendor_ibumad.c
@@ -446,6 +446,17 @@ osm_vendor_init(IN osm_vendor_t * const p_vend,
p_vend->p_log = p_log;
p_vend->timeout = timeout;
p_vend->max_retries = OSM_DEFAULT_RETRY_COUNT;
+
+ if ((max = getenv("OSM_UMAD_MAX_RETRIES")) != NULL) {
+ int tmp = strtol(max, NULL, 0);
+ if (tmp > 0)
+ p_vend->max_retries = tmp;
+ else
+ OSM_LOG(p_vend->p_log, OSM_LOG_ERROR, "Error:"
+ "OSM_UMAD_MAX_RETRIES=%d is invalid\n",
+ tmp);
+ }
+
pthread_mutex_init(&p_vend->cb_mutex, NULL);
pthread_mutex_init(&p_vend->match_tbl_mutex, NULL);
p_vend->umad_port_id = -1;
@@ -476,12 +487,13 @@ osm_vendor_init(IN osm_vendor_t * const p_vend,
p_vend->mtbl.max = tmp;
else
OSM_LOG(p_vend->p_log, OSM_LOG_ERROR, "Error:"
- "OSM_UMAD_MAX_PENDING=%d is invalid",
+ "OSM_UMAD_MAX_PENDING=%d is invalid\n",
tmp);
}
- OSM_LOG(p_vend->p_log, OSM_LOG_INFO, "%d pending umads specified\n",
- p_vend->mtbl.max);
+ OSM_LOG(p_vend->p_log, OSM_LOG_INFO,
+ "%d max retries %d max pending umads specified\n",
+ p_vend->max_retries, p_vend->mtbl.max);
p_vend->mtbl.tbl = calloc(p_vend->mtbl.max, sizeof(*(p_vend->mtbl.tbl)));
if (!p_vend->mtbl.tbl) {
--
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
next reply other threads:[~2009-10-19 18:33 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-19 18:33 Hal Rosenstock [this message]
[not found] ` <20091019183342.GA28926-Wuw85uim5zDR7s880joybQ@public.gmane.org>
2009-10-22 12:24 ` [PATCH] opensm/osm_vendor_ibumad.c: Add environment variable to change max retries Sasha Khapyorsky
2009-10-22 12:56 ` Hal Rosenstock
[not found] ` <f0e08f230910220556h3d7352f4s4bd8e57c0a01a5d0-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-10-22 13:50 ` Sasha Khapyorsky
2009-10-22 15:41 ` Hal Rosenstock
[not found] ` <f0e08f230910220841s220373fau2cd4e814ec77ca25-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-10-23 21:33 ` Sasha Khapyorsky
2009-10-23 22:02 ` Hal Rosenstock
[not found] ` <f0e08f230910231502p1758a8ag6c3852802aca40a7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-10-23 22:41 ` 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=20091019183342.GA28926@comcast.net \
--to=hnrose-wuw85uim5zdr7s880joybq@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=sashak-smomgflXvOZWk0Htik3J/w@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.