aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/Kconfig
diff options
context:
space:
mode:
authorVladimir Zapolskiy <vladimir_zapolskiy@mentor.com>2016-10-07 08:39:56 -0400
committerWim Van Sebroeck <wim@iguana.be>2016-10-08 04:27:17 -0400
commitda0d12ff2b829a35e9921918e925d79497b82bef (patch)
tree6c72ee5f9d3b26a9cb23baed655545b52559aba4 /drivers/watchdog/Kconfig
parentf77710c4cda01ad9c3672fb2f97bdea9a94da92a (diff)
watchdog: pretimeout: add panic pretimeout governor
The change adds panic watchdog pretimeout governor, on watchdog pretimeout event the kernel shall panic. In general watchdog pretimeout event means that something essentially bad is going on the system, for example a process scheduler stalls or watchdog feeder is killed due to OOM, so printing out information attendant to panic and before likely unavoidable reboot caused by a watchdog may help to determine a root cause of the issue. Signed-off-by: Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Tested-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/Kconfig')
-rw-r--r--drivers/watchdog/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
index 4aeb8f95beb4..cbd33321c0f8 100644
--- a/drivers/watchdog/Kconfig
+++ b/drivers/watchdog/Kconfig
@@ -1856,6 +1856,14 @@ config WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP
1856 governor is selected by a user, write a short message to 1856 governor is selected by a user, write a short message to
1857 the kernel log buffer and don't do any system changes. 1857 the kernel log buffer and don't do any system changes.
1858 1858
1859config WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC
1860 bool "panic"
1861 select WATCHDOG_PRETIMEOUT_GOV_PANIC
1862 help
1863 Use panic watchdog pretimeout governor by default, if
1864 a watchdog pretimeout event happens, consider that
1865 a watchdog feeder is dead and reboot is unavoidable.
1866
1859endchoice 1867endchoice
1860 1868
1861config WATCHDOG_PRETIMEOUT_GOV_NOOP 1869config WATCHDOG_PRETIMEOUT_GOV_NOOP
@@ -1864,6 +1872,12 @@ config WATCHDOG_PRETIMEOUT_GOV_NOOP
1864 Noop watchdog pretimeout governor, only an informational 1872 Noop watchdog pretimeout governor, only an informational
1865 message is added to kernel log buffer. 1873 message is added to kernel log buffer.
1866 1874
1875config WATCHDOG_PRETIMEOUT_GOV_PANIC
1876 tristate "Panic watchdog pretimeout governor"
1877 help
1878 Panic watchdog pretimeout governor, on watchdog pretimeout
1879 event put the kernel into panic.
1880
1867endif # WATCHDOG_PRETIMEOUT_GOV 1881endif # WATCHDOG_PRETIMEOUT_GOV
1868 1882
1869endif # WATCHDOG 1883endif # WATCHDOG