#include <linux/init.h>
#include <linux/fs.h>
#include <linux/kernel.h>
#include <linux/miscdevice.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/slab.h>
#include <linux/suspend.h>
#include <linux/watchdog.h>
#include <asm/ebcdic.h>
#include <asm/io.h>
#include <asm/uaccess.h>
Go to the source code of this file.
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_AUTHOR ("Arnd Bergmann <[email protected]>") |
|
| MODULE_DESCRIPTION ("z/VM Watchdog Timer") |
|
| module_param_string (cmd, vmwdt_cmd, MAX_CMDLEN, 0644) |
|
| MODULE_PARM_DESC (cmd,"CP command that is run when the watchdog triggers") |
|
| module_param_named (conceal, vmwdt_conceal, bool, 0644) |
|
| MODULE_PARM_DESC (conceal,"Enable the CONCEAL CP option while the watchdog "" is active") |
|
| module_param_named (nowayout, vmwdt_nowayout, bool, 0) |
|
| MODULE_PARM_DESC (nowayout,"Watchdog cannot be stopped once started"" (default=CONFIG_WATCHDOG_NOWAYOUT)") |
|
| MODULE_ALIAS_MISCDEV (WATCHDOG_MINOR) |
|
| module_init (vmwdt_init) |
|
| module_exit (vmwdt_exit) |
|
#define KMSG_COMPONENT "vmwatchdog" |
- Enumerator:
wdt_init |
|
wdt_change |
|
wdt_cancel |
|
wdt_conceal |
|
Definition at line 57 of file vmwatchdog.c.
MODULE_DESCRIPTION |
( |
"z/VM Watchdog Timer" |
| ) |
|
module_exit |
( |
vmwdt_exit |
| ) |
|
module_init |
( |
vmwdt_init |
| ) |
|
module_param_named |
( |
conceal |
, |
|
|
vmwdt_conceal |
, |
|
|
bool |
, |
|
|
0644 |
|
|
) |
| |
module_param_named |
( |
nowayout |
, |
|
|
vmwdt_nowayout |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
nowayout |
, |
|
|
"Watchdog cannot be stopped once started"" (default=CONFIG_WATCHDOG_NOWAYOUT)" |
|
|
) |
| |