diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-26 17:33:39 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-26 11:11:56 -0700 |
commit | 582ee43dad8e411513a74f2d801255dcffc6d29e (patch) | |
tree | bf822fd3dd9b889531134c7004e9f42b134485f1 /net/tipc/msg.h | |
parent | 704eae1f32274c0435f7f3924077afdb811edd1d (diff) | |
download | kernel_samsung_smdk4412-582ee43dad8e411513a74f2d801255dcffc6d29e.zip kernel_samsung_smdk4412-582ee43dad8e411513a74f2d801255dcffc6d29e.tar.gz kernel_samsung_smdk4412-582ee43dad8e411513a74f2d801255dcffc6d29e.tar.bz2 |
net/* misc endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net/tipc/msg.h')
-rw-r--r-- | net/tipc/msg.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/tipc/msg.h b/net/tipc/msg.h index 35d5ba1..ce26598 100644 --- a/net/tipc/msg.h +++ b/net/tipc/msg.h @@ -72,10 +72,8 @@ 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; + m->hdr[w] &= ~htonl(mask << pos); + m->hdr[w] |= htonl(val); } /* |