svn commit: r227851 - head/sys/dev/re
Pyun YongHyeon
yongari at FreeBSD.org
Tue Nov 22 23:27:59 UTC 2011
Author: yongari
Date: Tue Nov 22 23:27:59 2011
New Revision: 227851
URL: http://svn.freebsd.org/changeset/base/227851
Log:
Perform media change after setting IFF_DRV_RUNNING flag. Without it,
driver would ignore the first link state update if controller
already established a link such that it would have to take
additional link state handling in re_tick().
Modified:
head/sys/dev/re/if_re.c
Modified: head/sys/dev/re/if_re.c
==============================================================================
--- head/sys/dev/re/if_re.c Tue Nov 22 23:19:49 2011 (r227850)
+++ head/sys/dev/re/if_re.c Tue Nov 22 23:27:59 2011 (r227851)
@@ -3194,14 +3194,14 @@ re_init_locked(struct rl_softc *sc)
if (sc->rl_testmode)
return;
- mii_mediachg(mii);
-
CSR_WRITE_1(sc, RL_CFG1, CSR_READ_1(sc, RL_CFG1) | RL_CFG1_DRVLOAD);
ifp->if_drv_flags |= IFF_DRV_RUNNING;
ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
sc->rl_flags &= ~RL_FLAG_LINK;
+ mii_mediachg(mii);
+
sc->rl_watchdog_timer = 0;
callout_reset(&sc->rl_stat_callout, hz, re_tick, sc);
}
More information about the svn-src-all
mailing list