* [PATCH v2] opensm/osm_qos_policy.c: change a log message
@ 2010-09-05 15:24 Yevgeny Kliteynik
[not found] ` <4C83B646.7070903-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Yevgeny Kliteynik @ 2010-09-05 15:24 UTC (permalink / raw)
To: Sasha Khapyorsky, Linux RDMA
Pring multicast group GID rather than LID -
MGID is more relevant than MLID in this context.
Signed-off-by: Yevgeny Kliteynik <kliteyn-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
---
V2: fixed the log message
opensm/opensm/osm_qos_policy.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/opensm/opensm/osm_qos_policy.c b/opensm/opensm/osm_qos_policy.c
index 72df6c8..fa04e10 100644
--- a/opensm/opensm/osm_qos_policy.c
+++ b/opensm/opensm/osm_qos_policy.c
@@ -48,6 +48,7 @@
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
+#include <arpa/inet.h>
#include <opensm/osm_log.h>
#include <opensm/osm_node.h>
#include <opensm/osm_port.h>
@@ -772,6 +773,7 @@ static void __qos_policy_validate_pkey(
uint8_t sl;
uint32_t flow;
uint8_t hop;
+ char gid_str[INET6_ADDRSTRLEN];
if (!p_qos_policy || !p_qos_match_rule || !p_prtn)
return;
@@ -801,9 +803,10 @@ static void __qos_policy_validate_pkey(
&sl, &flow, &hop);
if (sl != p_prtn->sl) {
OSM_LOG(&p_qos_policy->p_subn->p_osm->log, OSM_LOG_DEBUG,
- "Updating MCGroup (MLID 0x%04x) SL to "
+ "Updating MCGroup (MGID %s) SL to "
"match partition SL (%u)\n",
- cl_hton16(p_prtn->mgrp->mcmember_rec.mlid),
+ inet_ntop(AF_INET6, p_prtn->mgrp->mcmember_rec.mgid.raw,
+ gid_str, sizeof gid_str),
p_prtn->sl);
p_prtn->mgrp->mcmember_rec.sl_flow_hop =
ib_member_set_sl_flow_hop(p_prtn->sl, flow, hop);
--
1.6.2.4
--
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] 2+ messages in thread
* Re: [PATCH v2] opensm/osm_qos_policy.c: change a log message
[not found] ` <4C83B646.7070903-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
@ 2010-09-06 16:47 ` Sasha Khapyorsky
0 siblings, 0 replies; 2+ messages in thread
From: Sasha Khapyorsky @ 2010-09-06 16:47 UTC (permalink / raw)
To: kliteyn-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb; +Cc: Linux RDMA
On 18:24 Sun 05 Sep , Yevgeny Kliteynik wrote:
> Pring multicast group GID rather than LID -
> MGID is more relevant than MLID in this context.
>
> Signed-off-by: Yevgeny Kliteynik <kliteyn-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
Applied with tiny change (see below). Thanks.
> ---
> V2: fixed the log message
>
> opensm/opensm/osm_qos_policy.c | 7 +++++--
> 1 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/opensm/opensm/osm_qos_policy.c b/opensm/opensm/osm_qos_policy.c
> index 72df6c8..fa04e10 100644
> --- a/opensm/opensm/osm_qos_policy.c
> +++ b/opensm/opensm/osm_qos_policy.c
> @@ -48,6 +48,7 @@
> #include <stdlib.h>
> #include <string.h>
> #include <ctype.h>
> +#include <arpa/inet.h>
> #include <opensm/osm_log.h>
> #include <opensm/osm_node.h>
> #include <opensm/osm_port.h>
> @@ -772,6 +773,7 @@ static void __qos_policy_validate_pkey(
> uint8_t sl;
> uint32_t flow;
> uint8_t hop;
> + char gid_str[INET6_ADDRSTRLEN];
I moved this string declaration to be under related 'if'...
>
> if (!p_qos_policy || !p_qos_match_rule || !p_prtn)
> return;
> @@ -801,9 +803,10 @@ static void __qos_policy_validate_pkey(
> &sl, &flow, &hop);
> if (sl != p_prtn->sl) {
there...
Sasha
> OSM_LOG(&p_qos_policy->p_subn->p_osm->log, OSM_LOG_DEBUG,
> - "Updating MCGroup (MLID 0x%04x) SL to "
> + "Updating MCGroup (MGID %s) SL to "
> "match partition SL (%u)\n",
> - cl_hton16(p_prtn->mgrp->mcmember_rec.mlid),
> + inet_ntop(AF_INET6, p_prtn->mgrp->mcmember_rec.mgid.raw,
> + gid_str, sizeof gid_str),
> p_prtn->sl);
> p_prtn->mgrp->mcmember_rec.sl_flow_hop =
> ib_member_set_sl_flow_hop(p_prtn->sl, flow, hop);
> --
> 1.6.2.4
>
>
--
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] 2+ messages in thread
end of thread, other threads:[~2010-09-06 16:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-05 15:24 [PATCH v2] opensm/osm_qos_policy.c: change a log message Yevgeny Kliteynik
[not found] ` <4C83B646.7070903-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
2010-09-06 16:47 ` Sasha Khapyorsky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox