View | Details | Raw Unified | Return to bug 266048
Collapse All | Expand All

(-)b/sys/dev/ixgbe/if_ix.c (-1 / +2 lines)
Lines 1585-1591 ixgbe_update_stats_counters(struct ixgbe_softc *sc) Link Here
1585
	 * - oversized packets count,
1585
	 * - oversized packets count,
1586
	 * - jabber count.
1586
	 * - jabber count.
1587
	 */
1587
	 */
1588
	IXGBE_SET_IERRORS(sc, stats->crcerrs + stats->illerrc + stats->xec +
1588
	IXGBE_SET_IERRORS(sc, stats->crcerrs + stats->illerrc +
1589
	    (hw->mac.type != ixgbe_mac_82598EB ? stats->xec: 0) +
1589
	    stats->mpc[0] + stats->rlec + stats->ruc + stats->rfc + stats->roc +
1590
	    stats->mpc[0] + stats->rlec + stats->ruc + stats->rfc + stats->roc +
1590
	    stats->rjc);
1591
	    stats->rjc);
1591
} /* ixgbe_update_stats_counters */
1592
} /* ixgbe_update_stats_counters */

Return to bug 266048