From: Chunhao Lin <hidden> Date: 2016-07-27 16:53:39
This series of patches fix 3 runtime pm related issues that are listed below.
Chunhao Lin (3):
r8169:fix kernel log spam when set or get hardware wol setting.
r8169:add checking driver's runtime pm status in rtl8169_get_ethtool_stats()
r8169:fix nic may not work after changing the mac address.
drivers/net/ethernet/realtek/r8169.c | 37 ++++++++++++++++++++++++++++++++----
1 file changed, 33 insertions(+), 4 deletions(-)
--
1.9.1
From: Chunhao Lin <hidden> Date: 2016-07-27 16:53:44
Not to call rtl8169_update_counters() to dump tally counter when driver is in
runtime suspend state.
Signed-off-by: Chunhao Lin <redacted>
---
drivers/net/ethernet/realtek/r8169.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
From: Chunhao Lin <hidden> Date: 2016-07-27 16:53:47
When there is no AC power, NIC may not work after changing the mac address.
Please refer to following link.
http://www.spinics.net/lists/netdev/msg356572.html
This issue is caused by runtime power management. When there is no AC power,
if we put NIC down (ifconfig down), the driver will in runtime suspend state
and hardware will be put into D3 state. During this time, driver cannot access
hardware regisers. So if you set new mac address during this time, it will not
work. And then, after resume, the NIC will keep using the old mac address and
the network will not work normally.
In this patch I add detecting runtime pm status when setting mac address.
If driver is in runtime suspend state, it will skip setting mac address and
set the new mac address during runtime resume.
Signed-off-by: Chunhao Lin <redacted>
---
drivers/net/ethernet/realtek/r8169.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
From: Chunhao Lin <hidden> Date: 2016-07-27 16:53:56
NIC will be put into D3 state during runtime suspend state.
When set or get hardware wol setting, driver will write or read hardware
register. If we set or get hardware wol setting in runtime suspend state,
because NIC will in D3 state, the register value read by driver will return all
0xff. That will let driver thinking register flag is not toggled and then prints
the warning message "rtl_counters_cond == 1 (loop: 1000, delay: 10)" to kernel
log.
For fixing this issue, add checking driver's pm runtime status in
rtl8169_get_wol() and rtl8169_set_wol().
Signed-off-by: Chunhao Lin <redacted>
---
drivers/net/ethernet/realtek/r8169.c | 20 ++++++++++++++++++--
1 file changed, 18 insertions(+), 2 deletions(-)
Either the driver resumes the device so that it can perform requested
operation or it signals .set_wol failure when the device is suspended.
If the driver does something else, "spam removal" translates to
"silent failure".
--
Ueimor
Either the driver resumes the device so that it can perform requested
operation or it signals .set_wol failure when the device is suspended.
If the driver does something else, "spam removal" translates to "silent
failure".
Because "tp->saved_wolopts" will be used to set hardware wol capability in rtl8169_runtime_resume(). So I prefer to keep "wol->wolopts" to " tp->saved_wolopts " in runtime suspend state and set this to this "wol->wolopts" to hardware in in rtl8169_runtime_resume().
Thanks.
------Please consider the environment before printing this e-mail.
Either the driver resumes the device so that it can perform requested
operation or it signals .set_wol failure when the device is suspended.
If the driver does something else, "spam removal" translates to "silent
failure".
Because "tp->saved_wolopts" will be used to set hardware wol capability in
rtl8169_runtime_resume(). So I prefer to keep "wol->wolopts" to
" tp->saved_wolopts " in runtime suspend state and set this to this
"wol->wolopts" to hardware in in rtl8169_runtime_resume().
It would be fine if it could be proven that rtl8169_runtime_resume() will
always be run before software state is lost.
--
Ueimor