|
@@ -8432,13 +8432,12 @@ static void i40e_link_event(struct i40e_pf *pf)
|
|
|
|
|
|
/* On success, disable temp link polling */
|
|
|
if (status == I40E_SUCCESS) {
|
|
|
- if (pf->flags & I40E_FLAG_TEMP_LINK_POLLING)
|
|
|
- pf->flags &= ~I40E_FLAG_TEMP_LINK_POLLING;
|
|
|
+ clear_bit(__I40E_TEMP_LINK_POLLING, pf->state);
|
|
|
} else {
|
|
|
/* Enable link polling temporarily until i40e_get_link_status
|
|
|
* returns I40E_SUCCESS
|
|
|
*/
|
|
|
- pf->flags |= I40E_FLAG_TEMP_LINK_POLLING;
|
|
|
+ set_bit(__I40E_TEMP_LINK_POLLING, pf->state);
|
|
|
dev_dbg(&pf->pdev->dev, "couldn't get link state, status: %d\n",
|
|
|
status);
|
|
|
return;
|
|
@@ -8490,7 +8489,7 @@ static void i40e_watchdog_subtask(struct i40e_pf *pf)
|
|
|
pf->service_timer_previous = jiffies;
|
|
|
|
|
|
if ((pf->flags & I40E_FLAG_LINK_POLLING_ENABLED) ||
|
|
|
- (pf->flags & I40E_FLAG_TEMP_LINK_POLLING))
|
|
|
+ test_bit(__I40E_TEMP_LINK_POLLING, pf->state))
|
|
|
i40e_link_event(pf);
|
|
|
|
|
|
/* Update the stats for active netdevs so the network stack
|