]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
isa-skelton: Remove a wrong netif_wake_queue() call
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>
Wed, 24 Feb 2010 06:00:17 +0000 (06:00 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 26 Feb 2010 10:08:34 +0000 (02:08 -0800)
The netif_wake_queue() is called correctly (i.e. only on !txfull
condition) from net_tx().  So Unconditional call to the
netif_wake_queue() here is wrong.  This might cause calling of
start_xmit routine on txfull state and trigger tx-ring overflow.

This fix is ported from commit 662a96bd6f020782dfbdc0d0bd177c7dbb556687
("tc35815: Remove a wrong netif_wake_queue() call which triggers BUG_ON").

Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/isa-skeleton.c

index d09e4d3a15a69eafbcd0472ee3c0d6d734f20464..9e55c3007743f819c55439ac107f86d11d4f1331 100644 (file)
@@ -536,7 +536,6 @@ static irqreturn_t net_interrupt(int irq, void *dev_id)
                /* Transmit complete. */
                net_tx(dev);
                np->stats.tx_packets++;
-               netif_wake_queue(dev);
        }
 #endif
        if (status & COUNTERS_INTR) {