]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
i40e: Don't exit link event early if link speed has changed
authorCatherine Sullivan <catherine.sullivan@intel.com>
Thu, 11 Dec 2014 07:06:33 +0000 (07:06 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Tue, 13 Jan 2015 19:48:20 +0000 (11:48 -0800)
Previously we were only checking if the link up state had changed,
and if it hadn't exiting the link event routine early. We should
also check if speed has changed, and if it has, stay and finish
processing the link event.

Change-ID: I9c8e0991b3f0279108a7858898c3c5ce0a9856b8
Signed-off-by: Catherine Sullivan <catherine.sullivan@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e_main.c

index 7c1497330138342d23ad6b82b8fdfd793f083946..80430b0cfeb75365209c394f958039fe4b138f65 100644 (file)
@@ -5503,14 +5503,18 @@ static void i40e_link_event(struct i40e_pf *pf)
 {
        bool new_link, old_link;
        struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
+       u8 new_link_speed, old_link_speed;
 
        /* set this to force the get_link_status call to refresh state */
        pf->hw.phy.get_link_info = true;
 
        old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
        new_link = i40e_get_link_status(&pf->hw);
+       old_link_speed = pf->hw.phy.link_info_old.link_speed;
+       new_link_speed = pf->hw.phy.link_info.link_speed;
 
        if (new_link == old_link &&
+           new_link_speed == old_link_speed &&
            (test_bit(__I40E_DOWN, &vsi->state) ||
             new_link == netif_carrier_ok(vsi->netdev)))
                return;