[NET]: Split skb->csum
... into anonymous union of __wsum and __u32 (csum and csum_offset resp.) Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5b14027bf2
commit
ff1dcadb1b
15 changed files with 22 additions and 19 deletions
|
@ -274,7 +274,10 @@ struct sk_buff {
|
|||
unsigned int len,
|
||||
data_len,
|
||||
mac_len;
|
||||
__wsum csum;
|
||||
union {
|
||||
__wsum csum;
|
||||
__u32 csum_offset;
|
||||
};
|
||||
__u32 priority;
|
||||
__u8 local_df:1,
|
||||
cloned:1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue