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/tcp_ipv4.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/tcp_ipv4.c')
| -rw-r--r-- | net/ipv4/tcp_ipv4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index e9d467124c4d..4913f25e5ad5 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -504,7 +504,7 @@ void tcp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb) if (skb->ip_summed == CHECKSUM_PARTIAL) { th->check = ~tcp_v4_check(th, len, inet->saddr, inet->daddr, 0); - skb->csum = offsetof(struct tcphdr, check); + skb->csum_offset = offsetof(struct tcphdr, check); } else { th->check = tcp_v4_check(th, len, inet->saddr, inet->daddr, csum_partial((char *)th, @@ -526,7 +526,7 @@ int tcp_v4_gso_send_check(struct sk_buff *skb) th->check = 0; th->check = ~tcp_v4_check(th, skb->len, iph->saddr, iph->daddr, 0); - skb->csum = offsetof(struct tcphdr, check); + skb->csum_offset = offsetof(struct tcphdr, check); skb->ip_summed = CHECKSUM_PARTIAL; return 0; } |
