aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-11-14 21:28:24 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-02 21:23:29 -0800
commit6b11687ef003ed595033da89643c8995676f929d (patch)
treef18b8e552e88aa213a24cd10bb4c67ba0bab8710 /include
parent[NET]: Annotate callers of csum_tcpudp_nofold() in net/* (diff)
downloadlinux-dev-6b11687ef003ed595033da89643c8995676f929d.tar.xz
linux-dev-6b11687ef003ed595033da89643c8995676f929d.zip
[NET]: Annotate csum_tcpudp_magic() callers in net/*
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/tcp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h
index 363960872de0..826aaecdb994 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -807,9 +807,9 @@ static inline void tcp_update_wl(struct tcp_sock *tp, u32 ack, u32 seq)
/*
* Calculate(/check) TCP checksum
*/
-static inline u16 tcp_v4_check(struct tcphdr *th, int len,
- unsigned long saddr, unsigned long daddr,
- unsigned long base)
+static inline __sum16 tcp_v4_check(struct tcphdr *th, int len,
+ __be32 saddr, __be32 daddr,
+ __wsum base)
{
return csum_tcpudp_magic(saddr,daddr,len,IPPROTO_TCP,base);
}