Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90885661 authored by David Woodhouse's avatar David Woodhouse Committed by David S. Miller
Browse files

libertas: Don't claim to have checksummed incoming packets.



This explains why we never noticed the corruption of checksums on
outgoing packets... we weren't actually checking them either.

Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 675787e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ void lbs_upload_rx_packet(struct lbs_private *priv, struct sk_buff *skb)
		else
			skb->protocol = eth_type_trans(skb, priv->dev);
	}
	skb->ip_summed = CHECKSUM_UNNECESSARY;
	skb->ip_summed = CHECKSUM_NONE;
	netif_rx(skb);
}