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

Commit a298830c authored by Herbert Xu's avatar Herbert Xu Committed by David S. Miller
Browse files

[NET]: Fix TX checksum feature check



This patch fixes a boolean error in the new TX checksum check
that causes bogus TSO packets to be generated.

Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 58e50a90
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -1509,11 +1509,11 @@ int dev_queue_xmit(struct sk_buff *skb)
		skb_set_transport_header(skb, skb->csum_start -
					      skb_headroom(skb));

		if (!(dev->features & NETIF_F_GEN_CSUM)
		    || ((dev->features & NETIF_F_IP_CSUM)
			&& skb->protocol == htons(ETH_P_IP))
		    || ((dev->features & NETIF_F_IPV6_CSUM)
			&& skb->protocol == htons(ETH_P_IPV6)))
		if (!(dev->features & NETIF_F_GEN_CSUM) &&
		    !((dev->features & NETIF_F_IP_CSUM) &&
		      skb->protocol == htons(ETH_P_IP)) &&
		    !((dev->features & NETIF_F_IPV6_CSUM) &&
		      skb->protocol == htons(ETH_P_IPV6)))
			if (skb_checksum_help(skb))
				goto out_kfree_skb;
	}