This is a note to let you know that I've just added the patch titled r8169: fix wake on lan setting for non-8111E.
to the 3.0-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: r8169-fix-wake-on-lan-setting-for-non-8111e.patch and it can be found in the queue-3.0 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@vger.kernel.org> know about it. >From stable-ow...@vger.kernel.org Sat Oct 6 06:49:16 2012 From: Francois Romieu <rom...@fr.zoreil.com> Date: Fri, 5 Oct 2012 23:29:08 +0200 Subject: r8169: fix wake on lan setting for non-8111E. To: stable@vger.kernel.org Cc: Hayes Wang <hayesw...@realtek.com>, Jonathan Nieder <jrnie...@gmail.com> From: Hayes Wang <hayesw...@realtek.com> commit d4ed95d796e5126bba51466dc07e287cebc8bd19 upstream. Only 8111E needs enable RxConfig bit 0 ~ 3 when suspending or shutdowning for wake on lan. Signed-off-by: Hayes Wang <hayesw...@realtek.com> Acked-by: Francois Romieu <rom...@fr.zoreil.com> Reviewed-by: Jonathan Nieder <jrnie...@gmail.com> Acked-by: David S. Miller <da...@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org> --- drivers/net/r8169.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c @@ -3126,8 +3126,10 @@ static void r8168_pll_power_down(struct rtl_writephy(tp, 0x1f, 0x0000); rtl_writephy(tp, MII_BMCR, 0x0000); - RTL_W32(RxConfig, RTL_R32(RxConfig) | - AcceptBroadcast | AcceptMulticast | AcceptMyPhys); + if (tp->mac_version == RTL_GIGA_MAC_VER_32 || + tp->mac_version == RTL_GIGA_MAC_VER_33) + RTL_W32(RxConfig, RTL_R32(RxConfig) | AcceptBroadcast | + AcceptMulticast | AcceptMyPhys); return; } Patches currently in stable-queue which might be from rom...@fr.zoreil.com are queue-3.0/r8169-fix-config2-msienable-bit-setting.patch queue-3.0/r8169-remove-erroneous-processing-of-always-set-bit.patch queue-3.0/r8169-fix-wake-on-lan-setting-for-non-8111e.patch queue-3.0/r8169-8168c-and-later-require-bit-0x20-to-be-set-in-config2-for-pme-signaling.patch queue-3.0/r8169-config1-is-read-only-on-8168c-and-later.patch queue-3.0/r8169-rx-fifo-overflow-fixes.patch queue-3.0/r8169-jumbo-fixes.patch queue-3.0/r8169-runtime-resume-before-shutdown.patch queue-3.0/r8169-increase-the-delay-parameter-of-pm_schedule_suspend.patch queue-3.0/r8169-don-t-enable-rx-when-shutdown.patch queue-3.0/r8169-missing-barriers.patch queue-3.0/r8169-fix-unsigned-int-wraparound-with-tso.patch queue-3.0/r8169-expand-received-packet-length-indication.patch queue-3.0/r8169-call-netif_napi_del-at-errpaths-and-at-driver-unload.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html