aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/watchdog.c
diff options
context:
space:
mode:
authorUlrich Obergfell <uobergfe@redhat.com>2015-11-05 21:44:36 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2015-11-05 22:34:48 -0500
commitc993590c6ae6273681d9fb2a8d26dce03bf9d96c (patch)
tree7a920849133ef3296975b5febbb567bcc532e203 /kernel/watchdog.c
parentb43cb43cb85b91d79d9f0719ff581e8cb6dfbb8f (diff)
watchdog: implement error handling in lockup_detector_suspend()
lockup_detector_suspend() now handles errors from watchdog_park_threads(). Signed-off-by: Ulrich Obergfell <uobergfe@redhat.com> Reviewed-by: Aaron Tomlin <atomlin@redhat.com> Acked-by: Don Zickus <dzickus@redhat.com> Cc: Ulrich Obergfell <uobergfe@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/watchdog.c')
-rw-r--r--kernel/watchdog.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/watchdog.c b/kernel/watchdog.c
index 704f93317666..e8b19db9c14a 100644
--- a/kernel/watchdog.c
+++ b/kernel/watchdog.c
@@ -707,6 +707,11 @@ int lockup_detector_suspend(void)
707 707
708 if (ret == 0) 708 if (ret == 0)
709 watchdog_suspended++; 709 watchdog_suspended++;
710 else {
711 watchdog_disable_all_cpus();
712 pr_err("Failed to suspend lockup detectors, disabled\n");
713 watchdog_enabled = 0;
714 }
710 715
711 mutex_unlock(&watchdog_proc_mutex); 716 mutex_unlock(&watchdog_proc_mutex);
712 717