Index: if_lagg.c =================================================================== --- if_lagg.c (revision 304103) +++ if_lagg.c (working copy) @@ -1680,6 +1680,7 @@ LAGG_RUNLOCK(sc, &tracker); m_freem(m); if_inc_counter(ifp, IFCOUNTER_OERRORS, 1); + if_inc_counter(sc->sc_ifp, IFCOUNTER_OERRORS, 1); return (ENXIO); } @@ -1688,8 +1689,10 @@ error = lagg_proto_start(sc, m); LAGG_RUNLOCK(sc, &tracker); - if (error != 0) + if (error != 0) { if_inc_counter(ifp, IFCOUNTER_OERRORS, 1); + if_inc_counter(sc->sc_ifp, IFCOUNTER_OERRORS, 1); + } return (error); }