Signed-off-by: Nicolas Morey-Chaisemartin 
<[email protected]>
---
I don't know if compilation on WinOF is still working with this patch as I have 
no way to test it but it fixes the problem for Linux.
If it doesn't work anymore, ntohll result should be shift of 32 bits right 
(>>32) before being cast to unsigned.

 infiniband-diags/src/ibstat.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/infiniband-diags/src/ibstat.c b/infiniband-diags/src/ibstat.c
index 7985be1..99af9a8 100644
--- a/infiniband-diags/src/ibstat.c
+++ b/infiniband-diags/src/ibstat.c
@@ -111,7 +111,7 @@ port_dump(umad_port_t *port, int alone)
        printf("%sBase lid: %d\n", pre, port->base_lid);
        printf("%sLMC: %d\n", pre, port->lmc);
        printf("%sSM lid: %d\n", pre, port->sm_lid);
-       printf("%sCapability mask: 0x%08x\n", pre, 
(unsigned)ntohll(port->capmask));
+       printf("%sCapability mask: 0x%08x\n", pre, 
(unsigned)(ntohl((uint32_t)(port->capmask))));
        printf("%sPort GUID: 0x%016llx\n", pre, (long long 
unsigned)ntohll(port->port_guid));
        return 0;
 }
-- 
1.6.2-rc2.GIT

_______________________________________________
general mailing list
[email protected]
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general

To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general

Reply via email to