Commit 24b7ea9f6c9787fad885442ed0cc010f1aa69cca
Committed by
David S. Miller
1 parent
d5d3ebe3be
Exists in
master
and in
39 other branches
8139cp: fix checksum broken
I am not family with RealTek RTL-8139C+ series 10/100 PCI Ethernet driver. I try to guess the meaning of RxProtoIP and IPFail. RxProtoIP stands for received IPv4 packet that upper protocol is not tcp and udp. !(status & IPFail) is true means that driver correctly to check checksum in IPv4 header. If these are right, driver will set ip_summed with CHECKSUM_UNNECESSARY for other upper protocol, e.g. sctp, igmp protocol. This will cause protocol stack ignores checksum check for packets with invalid checksum. This patch is only compile-test. Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Showing 1 changed file with 4 additions and 6 deletions Side-by-side Diff
drivers/net/8139cp.c
... | ... | @@ -490,13 +490,11 @@ |
490 | 490 | { |
491 | 491 | unsigned int protocol = (status >> 16) & 0x3; |
492 | 492 | |
493 | - if (likely((protocol == RxProtoTCP) && (!(status & TCPFail)))) | |
493 | + if (((protocol == RxProtoTCP) && !(status & TCPFail)) || | |
494 | + ((protocol == RxProtoUDP) && !(status & UDPFail))) | |
494 | 495 | return 1; |
495 | - else if ((protocol == RxProtoUDP) && (!(status & UDPFail))) | |
496 | - return 1; | |
497 | - else if ((protocol == RxProtoIP) && (!(status & IPFail))) | |
498 | - return 1; | |
499 | - return 0; | |
496 | + else | |
497 | + return 0; | |
500 | 498 | } |
501 | 499 | |
502 | 500 | static int cp_rx_poll(struct napi_struct *napi, int budget) |