From: Thomas Bogendoerfer Date: Tue, 7 Dec 2010 22:21:52 +0000 (+0000) Subject: hso: IP checksuming doesn't work on GE0301 option cards X-Git-Tag: upstream/snapshot3+hdmi~12195^2~51 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6934d33556b366d22392a415ca09d720fed6a442;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git hso: IP checksuming doesn't work on GE0301 option cards There is definitly a problem, that some option cards send up broken IP pakets leading to corrupted IP packets. These corruptions aren't detected, because the driver claims that the packets are already checksummed. This change removes the CHECKSUM_UNNECESSARY option and let IP detect broken data. Signed-off-by: Thomas Bogendoerfer Signed-off-by: David S. Miller --- diff --git a/drivers/net/usb/hso.c b/drivers/net/usb/hso.c index 62e9e8d..812edf8 100644 --- a/drivers/net/usb/hso.c +++ b/drivers/net/usb/hso.c @@ -958,10 +958,6 @@ static void packetizeRx(struct hso_net *odev, unsigned char *ip_pkt, /* Packet is complete. Inject into stack. */ /* We have IP packet here */ odev->skb_rx_buf->protocol = cpu_to_be16(ETH_P_IP); - /* don't check it */ - odev->skb_rx_buf->ip_summed = - CHECKSUM_UNNECESSARY; - skb_reset_mac_header(odev->skb_rx_buf); /* Ship it off to the kernel */