mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-03 00:54:09 +08:00
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>
This commit is contained in:
parent
d89bdff152
commit
62ecc37986
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user