diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-06-01 18:27:51 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-06-01 18:27:51 +0000 |
commit | 693f304923a4b9f4207b56a686a64fc1b54878d9 (patch) | |
tree | 1b82af0176dc1737d2b141e063fdf8a2eb40ec7e /target/linux | |
parent | 9d9fd36594c06cecbcc40819b071e4835348d505 (diff) | |
download | upstream-693f304923a4b9f4207b56a686a64fc1b54878d9.tar.gz upstream-693f304923a4b9f4207b56a686a64fc1b54878d9.tar.bz2 upstream-693f304923a4b9f4207b56a686a64fc1b54878d9.zip |
[brcm63xx] backport an upstream fix: We're not disabling IRQ, so we must call the irq safe flavour of netif_rx_complete, should fix some crashes when running the system for a long time
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16277 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/brcm63xx/files/drivers/net/bcm63xx_enet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/files/drivers/net/bcm63xx_enet.c b/target/linux/brcm63xx/files/drivers/net/bcm63xx_enet.c index 40c25651d6..3dd170d686 100644 --- a/target/linux/brcm63xx/files/drivers/net/bcm63xx_enet.c +++ b/target/linux/brcm63xx/files/drivers/net/bcm63xx_enet.c @@ -450,7 +450,7 @@ static int bcm_enet_poll(struct napi_struct *napi, int budget) /* no more packet in rx/tx queue, remove device from poll * queue */ - __netif_rx_complete(dev, napi); + netif_rx_complete(dev, napi); /* restore rx/tx interrupt */ enet_dma_writel(priv, ENETDMA_IR_PKTDONE_MASK, |