> - if (!likely(wr_id & IPOIB_CM_RX_UPDATE_MASK)) {
> + if (unlikely(wr_id & IPOIB_CM_RX_UPDATE_MASK)) {
This looks dubious -- you've reversed the sense of the test here.
if (!likely(foo))
should be converted to
if (unlikely(!foo))
instead.
_______________________________________________
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
