From: "Eli Dorfman (Voltaire)" <dorfman.eli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Sasha Khapyorsky <sashak-smomgflXvOZWk0Htik3J/w@public.gmane.org>
Cc: linux-rdma <linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
Ira Weiny <weiny2-i2BcT+NCU+M@public.gmane.org>
Subject: Re: [PATCH] opensm: Add update_desc command to opensm console
Date: Wed, 13 Jan 2010 17:18:50 +0200 [thread overview]
Message-ID: <4B4DE45A.4000303@gmail.com> (raw)
In-Reply-To: <20100112121423.GA574@me>
Sasha Khapyorsky wrote:
> Hi Eli,
>
> On 10:32 Tue 12 Jan , Eli Dorfman (Voltaire) wrote:
>> Add update_desc command to opensm console
>>
>> Sometimes nodes are discovered by the opensm with their default
>> name before real host name was resolves and updated in the HCA.
>> Since Mellanox ConnectX HCA do not support NodeDescription
>> change trap (as part of trap 144) we need an option to refresh
>> NodeDescription from console.
>>
>> Signed-off-by: Eli Dorfman <elid-smomgflXvOZWk0Htik3J/w@public.gmane.org>
>
> I understand the reason for the patch. Two questions are below.
>
>> ---
>> opensm/opensm/osm_console.c | 16 +++++++++++++
>> opensm/opensm/osm_state_mgr.c | 48 +++++++++++++++++++++++++++++-----------
>> 2 files changed, 51 insertions(+), 13 deletions(-)
>>
>> diff --git a/opensm/opensm/osm_console.c b/opensm/opensm/osm_console.c
>> index 206e7f7..e90cb99 100644
>> --- a/opensm/opensm/osm_console.c
>> +++ b/opensm/opensm/osm_console.c
>> @@ -56,6 +56,8 @@
>> #include <opensm/osm_perfmgr.h>
>> #include <opensm/osm_subnet.h>
>>
>> +extern void osm_update_node_desc(IN osm_sm_t *sm);
>> +
>> struct command {
>> char *name;
>> void (*help_function) (FILE * out, int detail);
>> @@ -207,6 +209,14 @@ static void help_dump_conf(FILE *out, int detail)
>> }
>> }
>>
>> +static void help_update_desc(FILE *out, int detail)
>> +{
>> + fprintf(out, "update_desc\n");
>> + if (detail) {
>> + fprintf(out, "update node description for all nodes\n");
>> + }
>> +}
>> +
>> #ifdef ENABLE_OSM_PERF_MGR
>> static void help_perfmgr(FILE * out, int detail)
>> {
>> @@ -1134,6 +1144,11 @@ static void dump_conf_parse(char **p_last, osm_opensm_t * p_osm, FILE * out)
>> osm_subn_output_conf(out, &p_osm->subn.opt);
>> }
>>
>> +static void update_desc_parse(char **p_last, osm_opensm_t * p_osm, FILE * out)
>> +{
>> + osm_update_node_desc(&p_osm->sm);
>> +}
>> +
>> #ifdef ENABLE_OSM_PERF_MGR
>> static void perfmgr_parse(char **p_last, osm_opensm_t * p_osm, FILE * out)
>> {
>> @@ -1326,6 +1341,7 @@ static const struct command console_cmds[] = {
>> {"switchbalance", &help_switchbalance, &switchbalance_parse},
>> {"lidbalance", &help_lidbalance, &lidbalance_parse},
>> {"dump_conf", &help_dump_conf, &dump_conf_parse},
>> + {"update_desc", &help_update_desc, &update_desc_parse},
>> {"version", &help_version, &version_parse},
>> #ifdef ENABLE_OSM_PERF_MGR
>> {"perfmgr", &help_perfmgr, &perfmgr_parse},
>> diff --git a/opensm/opensm/osm_state_mgr.c b/opensm/opensm/osm_state_mgr.c
>> index 6296f21..01dfba6 100644
>> --- a/opensm/opensm/osm_state_mgr.c
>> +++ b/opensm/opensm/osm_state_mgr.c
>> @@ -510,11 +510,7 @@ static void query_sm_info(cl_map_item_t * item, void *cxt)
>> ib_get_err_str(ret));
>> }
>>
>> -/**********************************************************************
>> - During a light sweep, check each node to see if the node description
>> - is valid and if not issue a ND query.
>> -**********************************************************************/
>> -static void state_mgr_get_node_desc(IN cl_map_item_t * obj, IN void *context)
>> +static void state_mgr_update_node_desc(IN cl_map_item_t * obj, IN void *context)
>> {
>> osm_madw_context_t mad_context;
>> osm_node_t *p_node = (osm_node_t *) obj;
>> @@ -527,14 +523,8 @@ static void state_mgr_get_node_desc(IN cl_map_item_t * obj, IN void *context)
>>
>> CL_ASSERT(p_node);
>>
>> - if (p_node->print_desc
>> - && strcmp(p_node->print_desc, OSM_NODE_DESC_UNKNOWN))
>> - /* if ND is valid, do nothing */
>> - goto exit;
>> -
>> - OSM_LOG(sm->p_log, OSM_LOG_ERROR,
>> - "ERR 3319: Unknown node description for node GUID "
>> - "0x%016" PRIx64 ". Reissuing ND query\n",
>> + OSM_LOG(sm->p_log, OSM_LOG_DEBUG,
>> + "Updating NodeDesc for 0x%016" PRIx64 "\n",
>> cl_ntoh64(osm_node_get_node_guid(p_node)));
>>
>> /* get a physp to request from. */
>> @@ -563,6 +553,38 @@ exit:
>> OSM_LOG_EXIT(sm->p_log);
>> }
>>
>> +void osm_update_node_desc(IN osm_sm_t *sm)
>> +{
>> + CL_PLOCK_ACQUIRE(sm->p_lock);
>
> Wouldn't you need exclusive locking here (CL_PLOCK_EXCL_ACQUIRE())?
no, since I'm only sending ND request. update is done when response arrives.
>
>> + cl_qmap_apply_func(&sm->p_subn->node_guid_tbl, state_mgr_update_node_desc,
>> + sm);
>> + CL_PLOCK_RELEASE(sm->p_lock);
>> +}
>> +
>> +/**********************************************************************
>> + During a light sweep, check each node to see if the node description
>> + is valid and if not issue a ND query.
>> +**********************************************************************/
>> +static void state_mgr_get_node_desc(IN cl_map_item_t * obj, IN void *context)
>> +{
>> + osm_node_t *p_node = (osm_node_t *) obj;
>> + osm_sm_t *sm = context;
>> +
>> + OSM_LOG_ENTER(sm->p_log);
>> +
>> + CL_ASSERT(p_node);
>> +
>> + if (p_node->print_desc
>> + && strcmp(p_node->print_desc, OSM_NODE_DESC_UNKNOWN))
>> + /* if ND is valid, do nothing */
>> + goto exit;
>> +
>
> Seems that "ERR 3319:" error message was dropped forever. Any reason
> for doing this?
dropped by mistake. will add this to patch v2.
Eli
>
> Sasha
>
>> + state_mgr_update_node_desc(obj, context);
>> +
>> +exit:
>> + OSM_LOG_EXIT(sm->p_log);
>> +}
>> +
>> /**********************************************************************
>> Initiates a lightweight sweep of the subnet.
>> Used during normal sweeps after the subnet is up.
>> --
>> 1.5.5
>>
--
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 prev parent reply other threads:[~2010-01-13 15:18 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-12 8:32 [PATCH] opensm: Add update_desc command to opensm console Eli Dorfman (Voltaire)
[not found] ` <4B4C3386.5040205-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-01-12 12:14 ` Sasha Khapyorsky
2010-01-13 15:18 ` Eli Dorfman (Voltaire) [this message]
2010-01-13 15:34 ` [PATCH v2] " Eli Dorfman (Voltaire)
[not found] ` <4B4DE7F5.3020407-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-01-13 17:26 ` 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=4B4DE45A.4000303@gmail.com \
--to=dorfman.eli-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=sashak-smomgflXvOZWk0Htik3J/w@public.gmane.org \
--cc=weiny2-i2BcT+NCU+M@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