Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Sep 2010 17:31:14 +0000 (UTC)
From:      Pyun YongHyeon <yongari@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r212969 - head/sys/dev/et
Message-ID:  <201009211731.o8LHVEKT001263@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yongari
Date: Tue Sep 21 17:31:14 2010
New Revision: 212969
URL: http://svn.freebsd.org/changeset/base/212969

Log:
  Make sure to clear IFF_DRV_RUNNING to reinitialize controller.
  While I'm here update if_oerrors counter when driver encounters
  watchdog timeout.

Modified:
  head/sys/dev/et/if_et.c

Modified: head/sys/dev/et/if_et.c
==============================================================================
--- head/sys/dev/et/if_et.c	Tue Sep 21 17:25:15 2010	(r212968)
+++ head/sys/dev/et/if_et.c	Tue Sep 21 17:31:14 2010	(r212969)
@@ -1320,6 +1320,8 @@ et_watchdog(struct et_softc *sc)
 
 	if_printf(sc->ifp, "watchdog timed out\n");
 
+	sc->ifp->if_oerrors++;
+	sc->ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
 	et_init_locked(sc);
 	et_start_locked(sc->ifp);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009211731.o8LHVEKT001263>