mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
r8169: improve RTL8168b FIFO overflow workaround
[ Upstream commit 6b02e407cb ]
So far only the reset bit it set, but the handler executing the reset
is not scheduled. Therefore nothing will happen until some other action
schedules the handler. Improve this by ensuring that the handler is
scheduled.
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5dc170aee1
commit
0557e5f8d6
@@ -6256,8 +6256,7 @@ static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
|
||||
if (unlikely(status & RxFIFOOver &&
|
||||
tp->mac_version == RTL_GIGA_MAC_VER_11)) {
|
||||
netif_stop_queue(tp->dev);
|
||||
/* XXX - Hack alert. See rtl_task(). */
|
||||
set_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags);
|
||||
rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING);
|
||||
}
|
||||
|
||||
rtl_irq_disable(tp);
|
||||
|
||||
Reference in New Issue
Block a user