OK, now what about things like these:

        if (0 > result) {
                sdp_warn("Error <%d> initializing SDP IOCB table.", result);
                goto error_iocb;
        }

may I change them all to

        if (result < 0) {

While being equivalent, we are testing the result, not 0.

Similiarly (although I feel somewhat less strongly about it)

        if (0 == result)
and
        if (NULL == conn)

are better off as

        if (!result) {
and
        if (!conn)

C is a Spartan language, and this is more brief.
Libor, I think I asked about the second one, but dont recall you
answering.
If OK to both, let me know and I'll do it on Sunday.

-- 
MST - Michael S. Tsirkin
_______________________________________________
openib-general mailing list
[email protected]
http://openib.org/mailman/listinfo/openib-general

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

Reply via email to