tipc: endianness annotations
authorAl Viro <viro@zeniv.linux.org.uk>
Sun, 27 Apr 2008 05:42:14 +0000 (22:42 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sun, 27 Apr 2008 21:26:49 +0000 (14:26 -0700)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/msg.h

index 6ad070d..ad487e8 100644 (file)
@@ -70,10 +70,9 @@ static inline void msg_set_bits(struct tipc_msg *m, u32 w,
                                u32 pos, u32 mask, u32 val)
 {
        val = (val & mask) << pos;
-       val = htonl(val);
-       mask = htonl(mask << pos);
-       m->hdr[w] &= ~mask;
-       m->hdr[w] |= val;
+       mask = mask << pos;
+       m->hdr[w] &= ~htonl(mask);
+       m->hdr[w] |= htonl(val);
 }
 
 /*