i40e: Give link more time after setting flow control
authorCatherine Sullivan <catherine.sullivan@intel.com>
Wed, 9 Jul 2014 07:46:18 +0000 (07:46 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Thu, 24 Jul 2014 11:58:53 +0000 (04:58 -0700)
Give link a little more time to come back up after setting flow control
before resetting. In the new NVMs it is taking longer for link to come back.
This causes the driver to attempt to reset the link, which then errors
because the firmware was already in the middle of a reset. Also, initialize
err to 0.

Change-ID: I1cc987a944e389d8909c262da5796f50722b4d6b
Signed-off-by: Catherine Sullivan <catherine.sullivan@intel.com>
Tested-by: Jim Young <jmyoungx@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e_ethtool.c

index f1d241e..9c93ff2 100644 (file)
@@ -630,7 +630,7 @@ static int i40e_set_pauseparam(struct net_device *netdev,
        bool link_up = hw_link_info->link_info & I40E_AQ_LINK_UP;
        i40e_status status;
        u8 aq_failures;
-       int err;
+       int err = 0;
 
        if (vsi != pf->vsi[pf->lan_vsi])
                return -EOPNOTSUPP;
@@ -683,8 +683,12 @@ static int i40e_set_pauseparam(struct net_device *netdev,
                err = -EAGAIN;
        }
 
-       if (!test_bit(__I40E_DOWN, &pf->state))
-               return i40e_nway_reset(netdev);
+       if (!test_bit(__I40E_DOWN, &pf->state)) {
+               /* Give it a little more time to try to come back */
+               msleep(75);
+               if (!test_bit(__I40E_DOWN, &pf->state))
+                       return i40e_nway_reset(netdev);
+       }
 
        return err;
 }