Skip to content

Commit

Permalink
[NET]: Preliminaty annotation of skb->csum.
Browse files Browse the repository at this point in the history
It's still not completely right; we need to split it into anon unions
of __wsum and unsigned - for cases when we use it for partial checksum
and for offset of checksum in skb

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Al Viro authored and David S. Miller committed Dec 3, 2006
1 parent 5a5a852 commit 1f61ab5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/linux/skbuff.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ struct sk_buff {

unsigned int len,
data_len,
mac_len,
csum;
mac_len;
__wsum csum;
__u32 priority;
__u8 local_df:1,
cloned:1,
Expand Down

0 comments on commit 1f61ab5

Please sign in to comment.