]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
wake_up_process() should be never used to wakeup a TASK_STOPPED/TRACED task
authorOleg Nesterov <oleg@redhat.com>
Mon, 21 Jan 2013 19:48:17 +0000 (20:48 +0100)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 10 Feb 2014 21:11:05 +0000 (16:11 -0500)
commit 9067ac85d533651b98c2ff903182a20cbb361fcb upstream.

wake_up_process() should never wakeup a TASK_STOPPED/TRACED task.
Change it to use TASK_NORMAL and add the WARN_ON().

TASK_ALL has no other users, probably can be killed.

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
[PG: kernel/sched/core.c --> kernel/sched.c on 2.6.34]
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
kernel/sched.c

index e24d139ff6945cf669fdbc3972032e01f8fcb055..ddcb8aeb2f595f19f4ce8474fe4a24a34a3a209f 100644 (file)
@@ -2492,7 +2492,8 @@ out:
  */
 int wake_up_process(struct task_struct *p)
 {
-       return try_to_wake_up(p, TASK_ALL, 0);
+       WARN_ON(task_is_stopped_or_traced(p));
+       return try_to_wake_up(p, TASK_NORMAL, 0);
 }
 EXPORT_SYMBOL(wake_up_process);