diff options
author | Li Zefan <lizefan@huawei.com> | 2013-05-16 22:31:20 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-05-28 05:28:19 -0400 |
commit | 08825c90af6e4bb902b3a51abb0ae6530199f682 (patch) | |
tree | fc1dee42a4589eb4fd84f2f1b2bd00ad7471c725 /Documentation/sysctl | |
parent | a6572f84c5b135d9b6df279ed3c8de028bd1edd9 (diff) |
watchdog: Document watchdog_thresh sysctl
Signed-off-by: Li Zefan <lizefan@huawei.com>
Acked-by: Don Zickus <dzickus@redhat.com>
Link: http://lkml.kernel.org/r/51959678.6000802@huawei.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'Documentation/sysctl')
-rw-r--r-- | Documentation/sysctl/kernel.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Documentation/sysctl/kernel.txt b/Documentation/sysctl/kernel.txt index ccd42589e124..e8fabd6cda35 100644 --- a/Documentation/sysctl/kernel.txt +++ b/Documentation/sysctl/kernel.txt | |||
@@ -76,6 +76,7 @@ show up in /proc/sys/kernel: | |||
76 | - tainted | 76 | - tainted |
77 | - threads-max | 77 | - threads-max |
78 | - unknown_nmi_panic | 78 | - unknown_nmi_panic |
79 | - watchdog_thresh | ||
79 | - version | 80 | - version |
80 | 81 | ||
81 | ============================================================== | 82 | ============================================================== |
@@ -648,3 +649,16 @@ that time, kernel debugging information is displayed on console. | |||
648 | 649 | ||
649 | NMI switch that most IA32 servers have fires unknown NMI up, for | 650 | NMI switch that most IA32 servers have fires unknown NMI up, for |
650 | example. If a system hangs up, try pressing the NMI switch. | 651 | example. If a system hangs up, try pressing the NMI switch. |
652 | |||
653 | ============================================================== | ||
654 | |||
655 | watchdog_thresh: | ||
656 | |||
657 | This value can be used to control the frequency of hrtimer and NMI | ||
658 | events and the soft and hard lockup thresholds. The default threshold | ||
659 | is 10 seconds. | ||
660 | |||
661 | The softlockup threshold is (2 * watchdog_thresh). Setting this | ||
662 | tunable to zero will disable lockup detection altogether. | ||
663 | |||
664 | ============================================================== | ||