diff -r 63aafe65357c sys/dev/cxgbe/adapter.h --- a/sys/dev/cxgbe/adapter.h Wed Aug 09 21:45:21 2017 -0700 +++ b/sys/dev/cxgbe/adapter.h Thu Aug 10 12:42:24 2017 -0700 @@ -287,6 +287,9 @@ struct port_info { uint8_t rx_chan_map; /* rx MPS channel bitmap */ struct link_config link_cfg; + uint8_t reported_link_ok; + uint8_t reported_fc; + u_int reported_speed; struct timeval last_refreshed; struct port_stats stats; diff -r 63aafe65357c sys/dev/cxgbe/common/t4_hw.c --- a/sys/dev/cxgbe/common/t4_hw.c Wed Aug 09 21:45:21 2017 -0700 +++ b/sys/dev/cxgbe/common/t4_hw.c Thu Aug 10 12:42:24 2017 -0700 @@ -7725,6 +7725,9 @@ int t4_handle_fw_rpl(struct adapter *ada lc = &pi->link_cfg; old_lc = *lc; + old_lc.link_ok = pi->reported_link_ok; + old_lc.speed = pi->reported_speed; + old_lc.fc = pi->reported_fc; old_ptype = pi->port_type; old_mtype = pi->mod_type; @@ -7737,6 +7740,9 @@ int t4_handle_fw_rpl(struct adapter *ada old_lc.speed != lc->speed || old_lc.fc != lc->fc) { t4_os_link_changed(pi, &old_lc); + pi->reported_link_ok = lc->link_ok; + pi->reported_fc = lc->fc; + pi->reported_speed = lc->speed; } } else { CH_WARN_RATELIMIT(adap, "Unknown firmware reply %d\n", opcode); diff -r 63aafe65357c sys/dev/cxgbe/t4_main.c --- a/sys/dev/cxgbe/t4_main.c Wed Aug 09 21:45:21 2017 -0700 +++ b/sys/dev/cxgbe/t4_main.c Thu Aug 10 12:42:24 2017 -0700 @@ -4336,6 +4336,8 @@ cxgbe_uninit_synchronized(struct vi_info pi->link_cfg.speed = 0; pi->link_cfg.link_down_rc = 255; t4_os_link_changed(pi, NULL); + pi->reported_link_ok = 0; + pi->reported_speed = 0; return (0); }