mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
isa-skelton: Remove a wrong netif_wake_queue() call
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 662a96bd6f
("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>
This commit is contained in:
parent
fbc450b137
commit
9c5f9c2861
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user