Commit 2bbbc868 authored by Al Viro's avatar Al Viro Committed by David S. Miller

[NET]: Annotate skb_checksum() and callers.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5f92a738
...@@ -1334,8 +1334,8 @@ extern int skb_copy_and_csum_datagram_iovec(struct sk_buff *skb, ...@@ -1334,8 +1334,8 @@ extern int skb_copy_and_csum_datagram_iovec(struct sk_buff *skb,
extern void skb_free_datagram(struct sock *sk, struct sk_buff *skb); extern void skb_free_datagram(struct sock *sk, struct sk_buff *skb);
extern void skb_kill_datagram(struct sock *sk, struct sk_buff *skb, extern void skb_kill_datagram(struct sock *sk, struct sk_buff *skb,
unsigned int flags); unsigned int flags);
extern unsigned int skb_checksum(const struct sk_buff *skb, int offset, extern __wsum skb_checksum(const struct sk_buff *skb, int offset,
int len, unsigned int csum); int len, __wsum csum);
extern int skb_copy_bits(const struct sk_buff *skb, int offset, extern int skb_copy_bits(const struct sk_buff *skb, int offset,
void *to, int len); void *to, int len);
extern int skb_store_bits(const struct sk_buff *skb, int offset, extern int skb_store_bits(const struct sk_buff *skb, int offset,
......
...@@ -1240,8 +1240,8 @@ EXPORT_SYMBOL(skb_store_bits); ...@@ -1240,8 +1240,8 @@ EXPORT_SYMBOL(skb_store_bits);
/* Checksum skb data. */ /* Checksum skb data. */
unsigned int skb_checksum(const struct sk_buff *skb, int offset, __wsum skb_checksum(const struct sk_buff *skb, int offset,
int len, unsigned int csum) int len, __wsum csum)
{ {
int start = skb_headlen(skb); int start = skb_headlen(skb);
int i, copy = start - offset; int i, copy = start - offset;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment