We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5437e31 commit 421da00Copy full SHA for 421da00
sys/dev/e1000/if_em.c
@@ -1668,9 +1668,7 @@ em_if_timer(if_ctx_t ctx, uint16_t qid)
1668
if (qid != 0)
1669
return;
1670
1671
- em_if_update_admin_status(ctx);
1672
- em_update_stats_counters(adapter);
1673
-
+ iflib_admin_intr_deferred(ctx);
1674
/* Reset LAA into RAR[0] on 82571 */
1675
if ((adapter->hw.mac.type == e1000_82571) &&
1676
e1000_get_laa_state_82571(&adapter->hw))
@@ -1786,6 +1784,7 @@ em_if_update_admin_status(if_ctx_t ctx)
1786
1784
iflib_link_state_change(ctx, LINK_STATE_DOWN, ifp->if_baudrate);
1787
1785
printf("link state changed to down\n");
1788
}
+ em_update_stats_counters(adapter);
1789
1790
E1000_WRITE_REG(&adapter->hw, E1000_IMS, EM_MSIX_LINK | E1000_IMS_LSC);
1791
0 commit comments