* [PATCH] mcm_rereg_test.c: Fix a couple of output messages
@ 2012-07-05 18:25 Hal Rosenstock
[not found] ` <4FF5DC2E.6000904-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Hal Rosenstock @ 2012-07-05 18:25 UTC (permalink / raw)
To: Ira Weiny; +Cc: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org)
In rereg_send, it's not a leave but query
Fix endian of guid in rereg_send_all
Signed-off-by: Hal Rosenstock <hal-rOwS8X3CFV5BDgjK7y7TUQ@public.gmane.org>
---
diff --git a/src/mcm_rereg_test.c b/src/mcm_rereg_test.c
index ec979d7..a8cce8b 100644
--- a/src/mcm_rereg_test.c
+++ b/src/mcm_rereg_test.c
@@ -101,7 +101,9 @@ static int rereg_send(int port, int agent, ib_portid_t * dport,
build_mcm_rec_umad(umad, dport, method, comp_mask, data);
if (umad_send(port, agent, umad, len, TMO, 0) < 0) {
- err("umad_send leave failed: %s\n", strerror(errno));
+ err("umad_send %s failed: %s\n",
+ (method == IB_MAD_METHOD_GET) ? "query" : "non query",
+ strerror(errno));
return -1;
}
dbg("umad_send %d: tid = 0x%016" PRIx64 "\n", method,
@@ -164,7 +166,7 @@ static int rereg_send_all(int port, int agent, ib_portid_t * dport,
rereg_port_gid(port, agent, dport, umad, len, list[i].gid);
if (ret < 0) {
err("rereg_send_all: rereg_port_gid 0x%016" PRIx64
- " failed\n", list[i].guid);
+ " failed\n", ntohll(list[i].guid));
continue;
}
list[i].trid = mad_get_field64(umad_get_mad(umad), 0,
--
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[parent not found: <4FF5DC2E.6000904-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>]
* Re: [PATCH] mcm_rereg_test.c: Fix a couple of output messages [not found] ` <4FF5DC2E.6000904-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org> @ 2012-07-08 0:26 ` Ira Weiny 0 siblings, 0 replies; 2+ messages in thread From: Ira Weiny @ 2012-07-08 0:26 UTC (permalink / raw) To: Hal Rosenstock Cc: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org) On Thu, 05 Jul 2012 14:25:50 -0400 Hal Rosenstock <hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org> wrote: > > In rereg_send, it's not a leave but query > Fix endian of guid in rereg_send_all > > Signed-off-by: Hal Rosenstock <hal-rOwS8X3CFV5BDgjK7y7TUQ@public.gmane.org> Thanks applied, Ira > --- > diff --git a/src/mcm_rereg_test.c b/src/mcm_rereg_test.c > index ec979d7..a8cce8b 100644 > --- a/src/mcm_rereg_test.c > +++ b/src/mcm_rereg_test.c > @@ -101,7 +101,9 @@ static int rereg_send(int port, int agent, ib_portid_t * dport, > > build_mcm_rec_umad(umad, dport, method, comp_mask, data); > if (umad_send(port, agent, umad, len, TMO, 0) < 0) { > - err("umad_send leave failed: %s\n", strerror(errno)); > + err("umad_send %s failed: %s\n", > + (method == IB_MAD_METHOD_GET) ? "query" : "non query", > + strerror(errno)); > return -1; > } > dbg("umad_send %d: tid = 0x%016" PRIx64 "\n", method, > @@ -164,7 +166,7 @@ static int rereg_send_all(int port, int agent, ib_portid_t * dport, > rereg_port_gid(port, agent, dport, umad, len, list[i].gid); > if (ret < 0) { > err("rereg_send_all: rereg_port_gid 0x%016" PRIx64 > - " failed\n", list[i].guid); > + " failed\n", ntohll(list[i].guid)); > continue; > } > list[i].trid = mad_get_field64(umad_get_mad(umad), 0, > -- > 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 -- Ira Weiny Member of Technical Staff Lawrence Livermore National Lab 925-423-8008 weiny2-i2BcT+NCU+M@public.gmane.org -- 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:[~2012-07-08 0:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-05 18:25 [PATCH] mcm_rereg_test.c: Fix a couple of output messages Hal Rosenstock
[not found] ` <4FF5DC2E.6000904-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2012-07-08 0:26 ` Ira Weiny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox