mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-04 12:13:43 +00:00
r8169: disable ASPM during NAPI poll
Several chip versions have problems with ASPM, what may result in rx_missed errors or tx timeouts. The root cause isn't known but experience shows that disabling ASPM during NAPI poll can avoid these problems. Suggested-by: Kai-Heng Feng <kai.heng.feng@canonical.com> Reviewed-by: Simon Horman <simon.horman@corigine.com> Tested-by: Kai-Heng Feng <kai.heng.feng@canonical.com> Tested-by: Holger Hoffstätte <holger@applied-asynchrony.com> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
49ef7d846d
commit
e1ed3e4d91
@ -4577,6 +4577,10 @@ static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
|
||||
}
|
||||
|
||||
if (napi_schedule_prep(&tp->napi)) {
|
||||
rtl_unlock_config_regs(tp);
|
||||
rtl_hw_aspm_clkreq_enable(tp, false);
|
||||
rtl_lock_config_regs(tp);
|
||||
|
||||
rtl_irq_disable(tp);
|
||||
__napi_schedule(&tp->napi);
|
||||
}
|
||||
@ -4636,9 +4640,14 @@ static int rtl8169_poll(struct napi_struct *napi, int budget)
|
||||
|
||||
work_done = rtl_rx(dev, tp, budget);
|
||||
|
||||
if (work_done < budget && napi_complete_done(napi, work_done))
|
||||
if (work_done < budget && napi_complete_done(napi, work_done)) {
|
||||
rtl_irq_enable(tp);
|
||||
|
||||
rtl_unlock_config_regs(tp);
|
||||
rtl_hw_aspm_clkreq_enable(tp, true);
|
||||
rtl_lock_config_regs(tp);
|
||||
}
|
||||
|
||||
return work_done;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user