The patch titled Subject: watchdog: do not unpark threads in watchdog_park_threads() on error has been added to the -mm tree. Its filename is watchdog-do-not-unpark-threads-in-watchdog_park_threads-on-error.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/watchdog-do-not-unpark-threads-in-watchdog_park_threads-on-error.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/watchdog-do-not-unpark-threads-in-watchdog_park_threads-on-error.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Ulrich Obergfell <uobergfe@xxxxxxxxxx> Subject: watchdog: do not unpark threads in watchdog_park_threads() on error If kthread_park() returns an error, watchdog_park_threads() should not blindly 'roll back' the already parked threads to the unparked state. Instead leave it up to the callers to handle such errors appropriately in their context. For example, it is redundant to unpark the threads if the lockup detectors will soon be disabled by the callers anyway. Signed-off-by: Ulrich Obergfell <uobergfe@xxxxxxxxxx> Reviewed-by: Aaron Tomlin <atomlin@xxxxxxxxxx> Cc: Don Zickus <dzickus@xxxxxxxxxx> Cc: Ulrich Obergfell <uobergfe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/watchdog.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff -puN kernel/watchdog.c~watchdog-do-not-unpark-threads-in-watchdog_park_threads-on-error kernel/watchdog.c --- a/kernel/watchdog.c~watchdog-do-not-unpark-threads-in-watchdog_park_threads-on-error +++ a/kernel/watchdog.c @@ -654,6 +654,12 @@ static struct smp_hotplug_thread watchdo /* * park all watchdog threads that are specified in 'watchdog_cpumask' + * + * This function returns an error if kthread_park() of a watchdog thread + * fails. In this situation, the watchdog threads of some CPUs can already + * be parked and the watchdog threads of other CPUs can still be runnable. + * Callers are expected to handle this special condition as appropriate in + * their context. */ static int watchdog_park_threads(void) { @@ -665,10 +671,6 @@ static int watchdog_park_threads(void) if (ret) break; } - if (ret) { - for_each_watchdog_cpu(cpu) - kthread_unpark(per_cpu(softlockup_watchdog, cpu)); - } put_online_cpus(); return ret; _ Patches currently in -mm which might be from uobergfe@xxxxxxxxxx are watchdog-fix-error-handling-in-proc_watchdog_thresh.patch watchdog-move-watchdog_disable_all_cpus-outside-of-ifdef.patch watchdog-implement-error-handling-in-update_watchdog_all_cpus-and-callers.patch watchdog-implement-error-handling-in-lockup_detector_suspend.patch watchdog-do-not-unpark-threads-in-watchdog_park_threads-on-error.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html