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().
This commit is contained in:
Pyun YongHyeon 2011-11-22 23:27:59 +00:00
parent 44f7cbf586
commit 1662c49e56
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=227851

View File

@ -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);
}