The patch titled Subject: hung_task-decrement-sysctl_hung_task_warnings-only-if-it-is-positive-fix has been removed from the -mm tree. Its filename was hung_task-decrement-sysctl_hung_task_warnings-only-if-it-is-positive-fix.patch This patch was dropped because it was withdrawn ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: hung_task-decrement-sysctl_hung_task_warnings-only-if-it-is-positive-fix handle -2, -3, ... as per the documentation Cc: John Siddle <jsiddle@xxxxxxxxxx> Cc: Tetsuo Handa <penguin-kernel@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/hung_task.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/hung_task.c~hung_task-decrement-sysctl_hung_task_warnings-only-if-it-is-positive-fix kernel/hung_task.c --- a/kernel/hung_task.c~hung_task-decrement-sysctl_hung_task_warnings-only-if-it-is-positive-fix +++ a/kernel/hung_task.c @@ -106,7 +106,7 @@ static void check_hung_task(struct task_ * complain: */ if (sysctl_hung_task_warnings) { - if (sysctl_hung_task_warnings > 0) + if (sysctl_hung_task_warnings != -1) sysctl_hung_task_warnings--; pr_err("INFO: task %s:%d blocked for more than %ld seconds.\n", t->comm, t->pid, timeout); _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are i-need-old-gcc.patch arm-arch-arm-include-asm-pageh-needs-personalityh.patch mm.patch linux-next-rejects.patch drivers-net-wireless-intel-iwlwifi-dvm-calibc-fix-min-warning.patch kernel-forkc-export-kernel_thread-to-modules.patch slab-leaks3-default-y.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