diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-15 00:37:33 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 00:23:36 -0500 |
commit | 81d77662763ae527ba3a9b9275467901aaab7dfd (patch) | |
tree | c0280981515d052535f24ac89cbb135dc68abe55 /include/linux/skbuff.h | |
parent | 2bbbc86890ac4c911c5057f69af93853e52a42a8 (diff) |
[NET]: Annotate skb_copy_and_csum_bits() and callers.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 784129fb61d4..874ca029fbb9 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -1340,9 +1340,9 @@ extern int skb_copy_bits(const struct sk_buff *skb, int offset, | |||
1340 | void *to, int len); | 1340 | void *to, int len); |
1341 | extern int skb_store_bits(const struct sk_buff *skb, int offset, | 1341 | extern int skb_store_bits(const struct sk_buff *skb, int offset, |
1342 | void *from, int len); | 1342 | void *from, int len); |
1343 | extern unsigned int skb_copy_and_csum_bits(const struct sk_buff *skb, | 1343 | extern __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, |
1344 | int offset, u8 *to, int len, | 1344 | int offset, u8 *to, int len, |
1345 | unsigned int csum); | 1345 | __wsum csum); |
1346 | extern void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to); | 1346 | extern void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to); |
1347 | extern void skb_split(struct sk_buff *skb, | 1347 | extern void skb_split(struct sk_buff *skb, |
1348 | struct sk_buff *skb1, const u32 len); | 1348 | struct sk_buff *skb1, const u32 len); |