HomeSort by: relevance | last modified time | path
    Searched defs:smw (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/mips/adm5120/dev/
admwdog.c 52 static int admwdog_setmode(struct sysmon_wdog *smw);
53 static int admwdog_tickle(struct sysmon_wdog *smw);
86 admwdog_setmode(struct sysmon_wdog *smw)
88 struct admsw_softc *sc = smw->smw_cookie;
90 if ((smw->smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED) {
95 if (smw->smw_period == WDOG_PERIOD_DEFAULT)
96 smw->smw_period = 32;
97 else if (smw->smw_period > ADMWDOG_MAX_PERIOD)
106 admwdog_tickle(struct sysmon_wdog *smw)
108 struct admsw_softc *sc = smw->smw_cookie
117 struct sysmon_wdog *smw = &sc->sc_smw; local in function:admwdog_attach
    [all...]
  /src/sys/dev/sysmon/
sysmon_wdog.c 161 struct sysmon_wdog *smw; local in function:sysmonclose_wdog
172 if ((smw = sysmon_armed_wdog) != NULL) {
173 if ((smw->smw_mode & WDOG_MODE_MASK) == WDOG_MODE_UTICKLE) {
174 error = sysmon_wdog_setmode(smw,
175 WDOG_MODE_DISARMED, smw->smw_period);
179 smw->smw_name);
199 struct sysmon_wdog *smw; local in function:sysmonioctl_wdog
208 smw = sysmon_wdog_find(wm->wm_name);
209 if (smw == NULL) {
214 wm->wm_mode = smw->smw_mode
382 struct sysmon_wdog *smw = sysmon_armed_wdog; local in function:sysmon_wdog_critpoll
404 struct sysmon_wdog *smw; local in function:sysmon_wdog_find
515 struct sysmon_wdog *smw; local in function:sysmon_wdog_ktickle
541 struct sysmon_wdog *smw; local in function:sysmon_wdog_shutdown
    [all...]
  /src/sys/arch/x86/pci/
tcpcib.c 312 struct sysmon_wdog *smw = &sc->sc_wdt_smw; local in function:tcpcib_resume
315 if ((smw->smw_mode & WDOG_MODE_MASK) != WDOG_MODE_DISARMED &&
316 smw->smw_period > 0) {
317 tcpcib_wdt_init(sc, smw->smw_period);
328 tcpcib_wdt_setmode(struct sysmon_wdog *smw)
330 struct tcpcib_softc *sc = smw->smw_cookie;
333 period = smw->smw_period;
334 if ((smw->smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED) {
344 tcpcib_wdt_tickle(smw);
351 tcpcib_wdt_tickle(struct sysmon_wdog *smw)
    [all...]
  /src/sys/arch/i386/pci/
elan520.c 331 struct sysmon_wdog *smw = &sc->sc_smw; local in function:elansc_wdog_arm
337 if (smw->smw_period == WDOG_PERIOD_DEFAULT) {
338 smw->smw_period = 32;
343 smw->smw_period) {
358 elansc_wdog_setmode(struct sysmon_wdog *smw)
360 struct elansc_softc *sc = smw->smw_cookie;
367 else if ((smw->smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED) {
378 elansc_wdog_tickle(struct sysmon_wdog *smw)
380 struct elansc_softc *sc = smw->smw_cookie;

Completed in 206 milliseconds