https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199716
--- Comment #2 from Sean Bruno <[email protected]> --- Index: if_em.c =================================================================== --- if_em.c (revision 282317) +++ if_em.c (working copy) @@ -1609,6 +1609,9 @@ ++adapter->link_irq; reg_icr = E1000_READ_REG(&adapter->hw, E1000_ICR); + if (reg_icr & E1000_ICR_RXO) + adapter->rx_overruns++; + if (reg_icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) { adapter->hw.mac.get_link_status = 1; em_handle_link(adapter, 0); Should DTRT -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to "[email protected]"
