aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-05-02 19:59:19 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-05-02 19:59:19 +0000
commit1de7321026a71ec8249e2e3df7a7c5c8cdf65f9f (patch)
treef5ddb0452dffc986234401fbfa23d7a62377a61c /target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch
parent1a24fcd9ecdeb5256c80ccde1530943d15b7a9a6 (diff)
downloadupstream-1de7321026a71ec8249e2e3df7a7c5c8cdf65f9f.tar.gz
upstream-1de7321026a71ec8249e2e3df7a7c5c8cdf65f9f.tar.bz2
upstream-1de7321026a71ec8249e2e3df7a7c5c8cdf65f9f.zip
add experimental support for 2.6.30
SVN-Revision: 15561
Diffstat (limited to 'target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch')
-rw-r--r--target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch b/target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch
new file mode 100644
index 0000000000..fbaf5d462c
--- /dev/null
+++ b/target/linux/ar71xx/patches-2.6.30/801-ag71xx-remove-redundant-napi-functions.patch
@@ -0,0 +1,38 @@
+--- a/drivers/net/ag71xx/ag71xx_main.c
++++ b/drivers/net/ag71xx/ag71xx_main.c
+@@ -557,7 +557,7 @@ static void ag71xx_oom_timer_handler(uns
+ struct net_device *dev = (struct net_device *) data;
+ struct ag71xx *ag = netdev_priv(dev);
+
+- netif_rx_schedule(&ag->napi);
++ napi_schedule(&ag->napi);
+ }
+
+ static void ag71xx_tx_timeout(struct net_device *dev)
+@@ -713,7 +713,7 @@ static int ag71xx_poll(struct napi_struc
+ DBG("%s: disable polling mode, done=%d, limit=%d\n",
+ dev->name, done, limit);
+
+- netif_rx_complete(napi);
++ napi_complete(napi);
+
+ /* enable interrupts */
+ spin_lock_irqsave(&ag->lock, flags);
+@@ -732,7 +732,7 @@ static int ag71xx_poll(struct napi_struc
+ printk(KERN_DEBUG "%s: out of memory\n", dev->name);
+
+ mod_timer(&ag->oom_timer, jiffies + AG71XX_OOM_REFILL);
+- netif_rx_complete(napi);
++ napi_complete(napi);
+ return 0;
+ }
+
+@@ -762,7 +762,7 @@ static irqreturn_t ag71xx_interrupt(int
+ if (likely(status & AG71XX_INT_POLL)) {
+ ag71xx_int_disable(ag, AG71XX_INT_POLL);
+ DBG("%s: enable polling mode\n", dev->name);
+- netif_rx_schedule(&ag->napi);
++ napi_schedule(&ag->napi);
+ }
+
+ return IRQ_HANDLED;