aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/oki-semi
diff options
context:
space:
mode:
authorRongQing.Li <roy.qing.li@gmail.com>2012-04-26 21:01:13 +0000
committerDavid S. Miller <davem@davemloft.net>2012-04-28 21:59:18 -0400
commit62ecc37986414ff98ba863f8f4b8c3fa9c8fb808 (patch)
tree4db2263863675bd980745c55cd45b10503cc8a98 /drivers/net/ethernet/oki-semi
parentdrivers/net/oki-semi: Remove the definition of PCH_GBE_ETH_ALEN (diff)
downloadlinux-dev-62ecc37986414ff98ba863f8f4b8c3fa9c8fb808.tar.xz
linux-dev-62ecc37986414ff98ba863f8f4b8c3fa9c8fb808.zip
drivers/net/oki-semi: Donot recompute IP header checksum
If I understand correct, NETIF_F_IP_CSUM only means the hardware will compute the TCP/UDP checksum, IP checksum is always computed in software So as a workround of hardware unable to compute small packages checksum, do not need to compute IP header checksum. Signed-off-by: RongQing.Li <roy.qing.li@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/oki-semi')
-rw-r--r--drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c b/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c
index 835e3bbdac18..107f41a46a41 100644
--- a/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c
+++ b/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c
@@ -1240,8 +1240,6 @@ static void pch_gbe_tx_queue(struct pch_gbe_adapter *adapter,
if (skb->protocol == htons(ETH_P_IP)) {
struct iphdr *iph = ip_hdr(skb);
unsigned int offset;
- iph->check = 0;
- iph->check = ip_fast_csum((u8 *) iph, iph->ihl);
offset = skb_transport_offset(skb);
if (iph->protocol == IPPROTO_TCP) {
skb->csum = 0;