2011-06-08 16:19:14 +04:00
|
|
|
.\" $NetBSD: swwdog.4,v 1.8 2011/06/08 12:19:14 pgoyette Exp $
|
2005-01-10 01:51:32 +03:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 2004, 2005 Steven M. Bellovin
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\" 3. All advertising materials mentioning features or use of this software
|
|
|
|
.\" must display the following acknowledgement:
|
|
|
|
.\" This product includes software developed by the NetBSD
|
|
|
|
.\" Foundation, Inc. and its contributors.
|
|
|
|
.\" 4. Neither the name of the author nor the names of its
|
|
|
|
.\" contributors may be used to endorse or promote products derived
|
|
|
|
.\" from this software without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS
|
|
|
|
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
|
|
|
|
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
.\" POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
2011-06-08 16:19:14 +04:00
|
|
|
.Dd June 8, 2011
|
2005-01-10 01:51:32 +03:00
|
|
|
.\" Written by Steven M. Bellovin
|
2005-01-11 14:32:11 +03:00
|
|
|
.Dt SWWDOG 4
|
2005-01-10 01:51:32 +03:00
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm swwdog
|
|
|
|
.Nd software watchdog timer
|
|
|
|
.Sh SYNOPSIS
|
2010-01-31 00:55:28 +03:00
|
|
|
.Cd "pseudo-device swwdog"
|
2005-01-10 01:51:32 +03:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
driver provides a software watchdog timer that works with
|
|
|
|
.Xr wdogctl 8 .
|
2011-06-08 16:19:14 +04:00
|
|
|
If the timer expires, the system reboots if the boolean variable
|
|
|
|
.Va swwdog_reboot
|
2010-07-22 18:10:14 +04:00
|
|
|
is
|
|
|
|
.Dv true ;
|
2011-06-08 16:19:14 +04:00
|
|
|
otherwise, the system will panic.
|
2010-07-22 18:10:14 +04:00
|
|
|
.Va swwdog_reboot
|
|
|
|
is accessible as a
|
|
|
|
.Xr sysctl 8
|
2011-06-08 16:19:14 +04:00
|
|
|
variable, hw.swwdog.reboot and defaults to
|
2010-07-22 18:10:14 +04:00
|
|
|
.Dv false .
|
2005-01-10 01:51:32 +03:00
|
|
|
.Pp
|
|
|
|
The default period of
|
|
|
|
.Nm
|
|
|
|
is 60 seconds.
|
2010-07-22 18:10:14 +04:00
|
|
|
.Pp
|
|
|
|
As with other watchdog timers, the
|
|
|
|
.Nm
|
|
|
|
driver prevents a system from suspending when the watchdog is armed.
|
2005-01-10 01:51:32 +03:00
|
|
|
.Sh SEE ALSO
|
2010-07-22 23:27:51 +04:00
|
|
|
.Xr sysctl 8 ,
|
2005-01-10 01:51:32 +03:00
|
|
|
.Xr wdogctl 8
|
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
2005-01-11 14:32:11 +03:00
|
|
|
driver was written by
|
|
|
|
.An Steven M. Bellovin .
|
2005-01-10 01:51:32 +03:00
|
|
|
.Sh BUGS
|
2010-01-31 00:55:28 +03:00
|
|
|
Only one watchdog timer can be active at any given time.
|
2010-07-22 18:10:14 +04:00
|
|
|
(Arguably, this is a bug in the watchdog timer framework.)
|
|
|
|
Therefore, only a single instance of the
|
|
|
|
.Nm
|
|
|
|
device can be created.
|
2005-01-10 01:51:32 +03:00
|
|
|
.Pp
|
|
|
|
Kernel tickle mode is useless with
|
|
|
|
.Nm
|
|
|
|
and arguably should be rejected, since both it and
|
|
|
|
this driver rely on the same callout mechanism; if one is
|
|
|
|
blocked, almost certainly the other is as well.
|
|
|
|
.Pp
|
|
|
|
The alarm option to
|
|
|
|
.Xr wdogctl 8
|
|
|
|
isn't implemented.
|