]> git.hungrycats.org Git - linux/commitdiff
r8169: fix nic may not work after changing mac address.
authorChun-Hao Lin <hau@realtek.com>
Fri, 29 Jul 2016 08:37:56 +0000 (16:37 +0800)
committerZygo Blaxell <zblaxell@thirteen.furryterror.org>
Sun, 9 Jul 2017 04:29:47 +0000 (00:29 -0400)
When there is no AC power, NIC may not work after changing 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 be 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 be set to hardware. After resume, 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, keep
the new mac address, and set the new mac address during runtime resume.

Signed-off-by: Chunhao Lin <hau@realtek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
(cherry picked from commit f51d4a10ac39ecf06b25e7a79121b06f7ed59928)

drivers/net/ethernet/realtek/r8169.c

index dd2cf3738b738bdf5b21e73587c5ab9aeecbe3c7..b1b87e6218a3c6bd711fec73bc2cd2f569f40cca 100644 (file)
@@ -4457,6 +4457,7 @@ static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
 static int rtl_set_mac_address(struct net_device *dev, void *p)
 {
        struct rtl8169_private *tp = netdev_priv(dev);
+       struct device *d = &tp->pci_dev->dev;
        struct sockaddr *addr = p;
 
        if (!is_valid_ether_addr(addr->sa_data))
@@ -4464,7 +4465,12 @@ static int rtl_set_mac_address(struct net_device *dev, void *p)
 
        memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
 
-       rtl_rar_set(tp, dev->dev_addr);
+       pm_runtime_get_noresume(d);
+
+       if (pm_runtime_active(d))
+               rtl_rar_set(tp, dev->dev_addr);
+
+       pm_runtime_put_noidle(d);
 
        return 0;
 }
@@ -7867,6 +7873,7 @@ static int rtl8169_runtime_resume(struct device *device)
        struct pci_dev *pdev = to_pci_dev(device);
        struct net_device *dev = pci_get_drvdata(pdev);
        struct rtl8169_private *tp = netdev_priv(dev);
+       rtl_rar_set(tp, dev->dev_addr);
 
        if (!tp->TxDescArray)
                return 0;