diff options
author | John Crispin <john@openwrt.org> | 2013-12-27 21:14:49 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-12-27 21:14:49 +0000 |
commit | 9715b61b3cbae4065226031151530e099e913e21 (patch) | |
tree | 7721cb14fbd8186ec111e70d74ac51ea02599703 | |
parent | 8c085f647b2ff582bee1c8bf730c53f052d91c4a (diff) | |
download | upstream-9715b61b3cbae4065226031151530e099e913e21.tar.gz upstream-9715b61b3cbae4065226031151530e099e913e21.tar.bz2 upstream-9715b61b3cbae4065226031151530e099e913e21.zip |
ralink: fix tso regression in the ethernet driver
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39168
-rw-r--r-- | target/linux/ramips/patches-3.10/999-raeth_fixes.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/ramips/patches-3.10/999-raeth_fixes.patch b/target/linux/ramips/patches-3.10/999-raeth_fixes.patch new file mode 100644 index 0000000000..6e6e81a7ac --- /dev/null +++ b/target/linux/ramips/patches-3.10/999-raeth_fixes.patch @@ -0,0 +1,13 @@ +Index: linux-3.10.24/drivers/net/ethernet/ralink/ralink_soc_eth.c +=================================================================== +--- linux-3.10.24.orig/drivers/net/ethernet/ralink/ralink_soc_eth.c 2013-12-27 20:32:59.004068866 +0100 ++++ linux-3.10.24/drivers/net/ethernet/ralink/ralink_soc_eth.c 2013-12-27 21:16:44.892046631 +0100 +@@ -335,7 +335,7 @@ + if (priv->soc->tso) + fe_start_tso(skb, dev, nr_frags, tx); + +- if (skb_shinfo(skb)->gso_segs > 1) { ++ if (priv->soc->tso && (skb_shinfo(skb)->gso_segs > 1)) { + struct iphdr *iph = NULL; + struct tcphdr *th = NULL; + struct ipv6hdr *ip6h = NULL; |