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 /drivers/net/cassini.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 'drivers/net/cassini.c')
| -rw-r--r-- | drivers/net/cassini.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/cassini.c b/drivers/net/cassini.c index 521c5b71023c..fd2cc13f7d97 100644 --- a/drivers/net/cassini.c +++ b/drivers/net/cassini.c @@ -2825,7 +2825,7 @@ static inline int cas_xmit_tx_ringN(struct cas *cp, int ring, u64 csum_start_off, csum_stuff_off; csum_start_off = (u64) (skb->h.raw - skb->data); - csum_stuff_off = (u64) ((skb->h.raw + skb->csum) - skb->data); + csum_stuff_off = csum_start_off + skb->csum_offset; ctrl = TX_DESC_CSUM_EN | CAS_BASE(TX_DESC_CSUM_START, csum_start_off) | |
