Roland Dreier wrote:
 > + stats->iw.ipInReceive = m.ipInReceive_hi + m.ipInReceive_lo;

Surely all the code like this is wrong?  Shouldn't it be more like

        stats->iw.ipInReceive = ((u64) m.ipInReceive_hi << 32) +
                m.ipInReceive_lo;

 - R.
Hrrrm,

I would think so!

Steve.



_______________________________________________
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