diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-09-05 23:04:05 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-05 23:04:05 -0400 |
commit | adea1ac7effbddbe60a9de6d63462bfe79289e59 (patch) | |
tree | 2461d7d34598a807a5e161ae4cde0136df5619ec /drivers/net/r8169.c | |
parent | 55bc3228ccef255041d697fe55dcc7fe4b37feb6 (diff) |
r8169: fix rx checksum offload
While porting GRO to r8169, I found this driver has a bug in its rx
path.
All skbs given to network stack had their ip_summed set to
CHECKSUM_NONE, while hardware said they had correct TCP/UDP checksums.
The reason is driver sets skb->ip_summed on the original skb before the
copy eventually done by copybreak. The fresh skb gets the ip_summed =
CHECKSUM_NONE value, forcing network stack to recompute checksum, and
preventing my GRO patch to work.
Fix is to make the ip_summed setting after skb copy.
Note : rx_copybreak current value is 16383, so all frames are copied...
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Acked-by: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/r8169.c')
-rw-r--r-- | drivers/net/r8169.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c index 07b3fb5175e5..56a11e29af0b 100644 --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c | |||
@@ -4450,9 +4450,8 @@ static inline int rtl8169_fragmented_frame(u32 status) | |||
4450 | return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag); | 4450 | return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag); |
4451 | } | 4451 | } |
4452 | 4452 | ||
4453 | static inline void rtl8169_rx_csum(struct sk_buff *skb, struct RxDesc *desc) | 4453 | static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1) |
4454 | { | 4454 | { |
4455 | u32 opts1 = le32_to_cpu(desc->opts1); | ||
4456 | u32 status = opts1 & RxProtoMask; | 4455 | u32 status = opts1 & RxProtoMask; |
4457 | 4456 | ||
4458 | if (((status == RxProtoTCP) && !(opts1 & TCPFail)) || | 4457 | if (((status == RxProtoTCP) && !(opts1 & TCPFail)) || |
@@ -4546,8 +4545,6 @@ static int rtl8169_rx_interrupt(struct net_device *dev, | |||
4546 | continue; | 4545 | continue; |
4547 | } | 4546 | } |
4548 | 4547 | ||
4549 | rtl8169_rx_csum(skb, desc); | ||
4550 | |||
4551 | if (rtl8169_try_rx_copy(&skb, tp, pkt_size, addr)) { | 4548 | if (rtl8169_try_rx_copy(&skb, tp, pkt_size, addr)) { |
4552 | pci_dma_sync_single_for_device(pdev, addr, | 4549 | pci_dma_sync_single_for_device(pdev, addr, |
4553 | pkt_size, PCI_DMA_FROMDEVICE); | 4550 | pkt_size, PCI_DMA_FROMDEVICE); |
@@ -4558,6 +4555,7 @@ static int rtl8169_rx_interrupt(struct net_device *dev, | |||
4558 | tp->Rx_skbuff[entry] = NULL; | 4555 | tp->Rx_skbuff[entry] = NULL; |
4559 | } | 4556 | } |
4560 | 4557 | ||
4558 | rtl8169_rx_csum(skb, status); | ||
4561 | skb_put(skb, pkt_size); | 4559 | skb_put(skb, pkt_size); |
4562 | skb->protocol = eth_type_trans(skb, dev); | 4560 | skb->protocol = eth_type_trans(skb, dev); |
4563 | 4561 | ||