mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 12:24:37 -04:00
i40e: Don't exit link event early if link speed has changed
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>
This commit is contained in:
committed by
Jeff Kirsher
parent
f0d8c73396
commit
fef59ddfe8
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user