diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-15 08:36:34 +0300 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 08:23:33 +0300 |
commit | 5084205faf45384fff25c4cf77dd5c96279283ad (patch) | |
tree | 9a5a3cb74bf64a6ec4c1b77d7805b256978943ca /net/core/skbuff.c | |
parent | 44bb93633f57a55979f3c2589b10fd6a2bfc7c08 (diff) | |
download | linux-5084205faf45384fff25c4cf77dd5c96279283ad.tar.xz |
[NET]: Annotate callers of csum_partial_copy_...() and csum_and_copy...() 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/core/skbuff.c')
-rw-r--r-- | net/core/skbuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index c0e3427057fc..da6683f4b31d 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -1342,7 +1342,7 @@ unsigned int skb_copy_and_csum_bits(const struct sk_buff *skb, int offset, end = start + skb_shinfo(skb)->frags[i].size; if ((copy = end - offset) > 0) { - unsigned int csum2; + __wsum csum2; u8 *vaddr; skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; |