summaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/patches-2.6.27/900-cpmac_multiqueue.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-05-07 12:17:56 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-05-07 12:17:56 +0000
commit6239eb2c7bf24099a7516cef5bb14ca61b1a0a58 (patch)
treeb15c57cdf15ae7339d829b6d75d025035a599b49 /target/linux/ar7/patches-2.6.27/900-cpmac_multiqueue.patch
parent28dbc959ca75f6ca3c3f6a6c9295a5924dad469b (diff)
downloadmaster-31e0f0ae-6239eb2c7bf24099a7516cef5bb14ca61b1a0a58.tar.gz
master-31e0f0ae-6239eb2c7bf24099a7516cef5bb14ca61b1a0a58.tar.bz2
master-31e0f0ae-6239eb2c7bf24099a7516cef5bb14ca61b1a0a58.zip
update to 2.6.27 (#4122)
SVN-Revision: 15665
Diffstat (limited to 'target/linux/ar7/patches-2.6.27/900-cpmac_multiqueue.patch')
-rw-r--r--target/linux/ar7/patches-2.6.27/900-cpmac_multiqueue.patch70
1 files changed, 70 insertions, 0 deletions
diff --git a/target/linux/ar7/patches-2.6.27/900-cpmac_multiqueue.patch b/target/linux/ar7/patches-2.6.27/900-cpmac_multiqueue.patch
new file mode 100644
index 0000000000..1484e2b5fd
--- /dev/null
+++ b/target/linux/ar7/patches-2.6.27/900-cpmac_multiqueue.patch
@@ -0,0 +1,70 @@
+This patch fixes the network driver cpmac.c for compilation with
+configuration option CONFIG_NETDEVICES_MULTIQUEUE.
+
+These compiler warnings are fixed by the patch:
+drivers/net/cpmac.c: In function 'cpmac_end_xmit':
+drivers/net/cpmac.c:630: warning: passing argument 2 of 'netif_subqueue_stopped' makes pointer from integer without a cast
+drivers/net/cpmac.c:641: warning: passing argument 2 of 'netif_subqueue_stopped' makes pointer from integer without a cast
+drivers/net/cpmac.c: In function 'cpmac_probe':
+drivers/net/cpmac.c:1128: warning: unused variable 'i'
+
+During runtime, the unpatched driver raises a fatal runtime exception.
+This is fixed by calling __netif_subqueue_stopped instead
+of netif_subqueue_stopped, too.
+
+Two additional code parts were modified for CONFIG_NETDEVICES_MULTIQUEUE
+because other drivers do it in the same way.
+
+ Signed-off-by: Stefan Weil <weil@mail.berlios.de>
+
+--- a/drivers/net/cpmac.c
++++ b/drivers/net/cpmac.c
+@@ -621,13 +621,13 @@
+
+ dev_kfree_skb_irq(desc->skb);
+ desc->skb = NULL;
+- if (netif_subqueue_stopped(dev, queue))
++ if (__netif_subqueue_stopped(dev, queue))
+ netif_wake_subqueue(dev, queue);
+ } else {
+ if (netif_msg_tx_err(priv) && net_ratelimit())
+ printk(KERN_WARNING
+ "%s: end_xmit: spurious interrupt\n", dev->name);
+- if (netif_subqueue_stopped(dev, queue))
++ if (__netif_subqueue_stopped(dev, queue))
+ netif_wake_subqueue(dev, queue);
+ }
+ }
+@@ -737,7 +737,6 @@
+
+ static void cpmac_hw_error(struct work_struct *work)
+ {
+- int i;
+ struct cpmac_priv *priv =
+ container_of(work, struct cpmac_priv, reset_work);
+
+@@ -824,7 +823,6 @@
+
+ static void cpmac_tx_timeout(struct net_device *dev)
+ {
+- int i;
+ struct cpmac_priv *priv = netdev_priv(dev);
+
+ spin_lock(&priv->lock);
+@@ -1103,7 +1101,7 @@
+
+ static int __devinit cpmac_probe(struct platform_device *pdev)
+ {
+- int rc, phy_id, i;
++ int rc, phy_id;
+ char *mdio_bus_id = "0";
+ struct resource *mem;
+ struct cpmac_priv *priv;
+@@ -1132,6 +1130,7 @@
+ }
+
+ dev = alloc_etherdev_mq(sizeof(*priv), CPMAC_QUEUES);
++ //~ dev = alloc_etherdev(sizeof(*priv));
+
+ if (!dev) {
+ printk(KERN_ERR "cpmac: Unable to allocate net_device\n");