diff options
| author | Al Viro <[email protected]> | 2006-11-21 02:07:29 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2006-12-03 05:27:18 +0000 |
| commit | ff1dcadb1b55dbf471c5ed109dbbdf06bd19ef3b (patch) | |
| tree | cbcd17d33ecc52c90d218b43c5aec430be448058 /net/ipv4/udp.c | |
| parent | [NETFILTER]: ip_nat_snmp_basic annotations. (diff) | |
| download | kernel-ff1dcadb1b55dbf471c5ed109dbbdf06bd19ef3b.tar.gz kernel-ff1dcadb1b55dbf471c5ed109dbbdf06bd19ef3b.zip | |
[NET]: Split skb->csum
... into anonymous union of __wsum and __u32 (csum and csum_offset resp.)
Signed-off-by: Al Viro <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/udp.c')
| -rw-r--r-- | net/ipv4/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 28e4cf662ce0..1807a30694d9 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@ -422,7 +422,7 @@ static void udp4_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb, /* * Only one fragment on the socket. */ - skb->csum = offsetof(struct udphdr, check); + skb->csum_offset = offsetof(struct udphdr, check); uh->check = ~csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, 0); } else { /* |
