aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/patches-3.0/200-netif_receive_skb.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2011-07-06 17:27:17 +0000
committerJohn Crispin <john@openwrt.org>2011-07-06 17:27:17 +0000
commita674aabe5439b8a507e31833a1fcb3bab925b050 (patch)
treee29576e0d27a4edfa02b0295bf2d8a4a27f3ce39 /target/linux/lantiq/patches-3.0/200-netif_receive_skb.patch
parentabb1ca01a7121b36aa04a16da5d27f2fed02f3e8 (diff)
downloadupstream-a674aabe5439b8a507e31833a1fcb3bab925b050.tar.gz
upstream-a674aabe5439b8a507e31833a1fcb3bab925b050.tar.bz2
upstream-a674aabe5439b8a507e31833a1fcb3bab925b050.zip
get ready for 3.0
SVN-Revision: 27496
Diffstat (limited to 'target/linux/lantiq/patches-3.0/200-netif_receive_skb.patch')
-rw-r--r--target/linux/lantiq/patches-3.0/200-netif_receive_skb.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/target/linux/lantiq/patches-3.0/200-netif_receive_skb.patch b/target/linux/lantiq/patches-3.0/200-netif_receive_skb.patch
new file mode 100644
index 0000000000..7e870e28f9
--- /dev/null
+++ b/target/linux/lantiq/patches-3.0/200-netif_receive_skb.patch
@@ -0,0 +1,17 @@
+--- a/drivers/net/lantiq_etop.c
++++ b/drivers/net/lantiq_etop.c
+@@ -155,8 +155,12 @@
+
+ skb_put(skb, len);
+ skb->dev = ch->netdev;
+- skb->protocol = eth_type_trans(skb, ch->netdev);
+- netif_receive_skb(skb);
++ if (priv->phydev && priv->phydev->netif_receive_skb) {
++ priv->phydev->netif_receive_skb(skb);
++ } else {
++ skb->protocol = eth_type_trans(skb, ch->netdev);
++ netif_receive_skb(skb);
++ }
+ }
+
+ static int