diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-08-24 19:29:50 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-08-24 19:29:50 +0000 |
commit | 852451deeb3a3dec609521bf7730912ccf6b50e5 (patch) | |
tree | c9a86fcb972e1e498c84709e7f5b022689b51879 /target/linux/ar71xx/patches-2.6.31/801-ag71xx-remove-redundant-napi-functions.patch | |
parent | 167120730bed3bcfdc7585db3f0d4a191481d15d (diff) | |
download | upstream-852451deeb3a3dec609521bf7730912ccf6b50e5.tar.gz upstream-852451deeb3a3dec609521bf7730912ccf6b50e5.tar.bz2 upstream-852451deeb3a3dec609521bf7730912ccf6b50e5.zip |
add patches for 2.6.31
SVN-Revision: 17366
Diffstat (limited to 'target/linux/ar71xx/patches-2.6.31/801-ag71xx-remove-redundant-napi-functions.patch')
-rw-r--r-- | target/linux/ar71xx/patches-2.6.31/801-ag71xx-remove-redundant-napi-functions.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-2.6.31/801-ag71xx-remove-redundant-napi-functions.patch b/target/linux/ar71xx/patches-2.6.31/801-ag71xx-remove-redundant-napi-functions.patch new file mode 100644 index 0000000000..65a02bc120 --- /dev/null +++ b/target/linux/ar71xx/patches-2.6.31/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 +@@ -575,7 +575,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) +@@ -731,7 +731,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); +@@ -750,7 +750,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; + } + +@@ -780,7 +780,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; |