net: hns: fixes a bug about timeout by pause frame
authorlisheng <[email protected]>
Fri, 16 Oct 2015 09:03:20 +0000 (17:03 +0800)
committerDavid S. Miller <[email protected]>
Mon, 19 Oct 2015 02:57:08 +0000 (19:57 -0700)
this patch fixes the bug triggered timeout sequence. when the connective
ports cannot accept the packets with higher speed, they will send out the
pause frame to the Soc's mac. At that time, the driver resets the relevant
of the Soc, then it causes the packets cannot be sent out immediately.
this patch fixes the issue.

Signed-off-by: yankejian <[email protected]>
Signed-off-by: Yisen Zhuang <[email protected]>
Signed-off-by: lisheng <[email protected]>
Signed-off-by: lipeng <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ethernet/hisilicon/hns/hns_enet.c

index 6f9091c2986982b4028ad30eef90839620ffb76a..302d3ae8e9e594a48da1791564cade416837128e 100644 (file)
@@ -1315,16 +1315,15 @@ static void hns_nic_reset_subtask(struct hns_nic_priv *priv)
                return;
 
        hns_nic_dump(priv);
-       netdev_err(priv->netdev, "Reset %s port\n",
-                  (type == HNAE_PORT_DEBUG ? "debug" : "business"));
+       netdev_info(priv->netdev, "Reset %s port\n",
+                   (type == HNAE_PORT_DEBUG ? "debug" : "business"));
 
        rtnl_lock();
-       if (type == HNAE_PORT_DEBUG) {
+       /* put off any impending NetWatchDogTimeout */
+       priv->netdev->trans_start = jiffies;
+
+       if (type == HNAE_PORT_DEBUG)
                hns_nic_net_reinit(priv->netdev);
-       } else {
-               hns_nic_net_down(priv->netdev);
-               hns_nic_net_reset(priv->netdev);
-       }
        rtnl_unlock();
 }