diff options
author | Al Viro | 2006-11-15 06:24:49 +0100 |
---|---|---|
committer | David S. Miller | 2006-12-03 06:23:27 +0100 |
commit | d3bc23e7ee9db8023dff5a86bb3b0069ed018789 (patch) | |
tree | f281b190a20084386666e0f3bb957df427b93ca7 /net/ipv4/ipvs | |
parent | [NET]: Annotate checksums in on-the-wire packets. (diff) | |
download | kernel-qcow2-linux-d3bc23e7ee9db8023dff5a86bb3b0069ed018789.tar.gz kernel-qcow2-linux-d3bc23e7ee9db8023dff5a86bb3b0069ed018789.tar.xz kernel-qcow2-linux-d3bc23e7ee9db8023dff5a86bb3b0069ed018789.zip |
[NET]: Annotate callers of csum_fold() 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/ipv4/ipvs')
-rw-r--r-- | net/ipv4/ipvs/ip_vs_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipvs/ip_vs_core.c b/net/ipv4/ipvs/ip_vs_core.c index 1445bb47fea4..fac2dffd6672 100644 --- a/net/ipv4/ipvs/ip_vs_core.c +++ b/net/ipv4/ipvs/ip_vs_core.c @@ -538,7 +538,7 @@ static unsigned int ip_vs_post_routing(unsigned int hooknum, u16 ip_vs_checksum_complete(struct sk_buff *skb, int offset) { - return (u16) csum_fold(skb_checksum(skb, offset, skb->len - offset, 0)); + return csum_fold(skb_checksum(skb, offset, skb->len - offset, 0)); } static inline struct sk_buff * |