diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-15 00:28:51 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 00:23:30 -0500 |
commit | 2bda2853150e20ca2a44627d00b5f85af0b24a42 (patch) | |
tree | 7e2b3f0de3f8fbe506e59d58b6d71bc1422dea58 /net/dccp | |
parent | 6b11687ef003ed595033da89643c8995676f929d (diff) |
[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 'net/dccp')
-rw-r--r-- | net/dccp/ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c index 35985334daee..6bca71929de5 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c | |||
@@ -344,7 +344,7 @@ out: | |||
344 | sock_put(sk); | 344 | sock_put(sk); |
345 | } | 345 | } |
346 | 346 | ||
347 | static inline u16 dccp_v4_csum_finish(struct sk_buff *skb, | 347 | static inline __sum16 dccp_v4_csum_finish(struct sk_buff *skb, |
348 | __be32 src, __be32 dst) | 348 | __be32 src, __be32 dst) |
349 | { | 349 | { |
350 | return csum_tcpudp_magic(src, dst, skb->len, IPPROTO_DCCP, skb->csum); | 350 | return csum_tcpudp_magic(src, dst, skb->len, IPPROTO_DCCP, skb->csum); |