From: Rafael J. Wysocki Date: Thu, 18 Oct 2007 10:04:45 +0000 (-0700) Subject: freezer: prevent new tasks from inheriting TIF_FREEZE set X-Git-Tag: v2.6.24-rc1~432 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e1318956ce6bf149af5c5e98499b5cd99f99c89;p=platform%2Fkernel%2Flinux-exynos.git freezer: prevent new tasks from inheriting TIF_FREEZE set Tasks should go to the refrigerator only if explicitly requested to do that by the freezer and not as a result of inheriting the TIF_FREEZE flag set from the parent. Make it happen. Signed-off-by: Rafael J. Wysocki Acked-by: Pavel Machek Acked-by: Nigel Cunningham Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/fork.c b/kernel/fork.c index 490495a..7e455a9 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -942,6 +942,7 @@ static inline void copy_flags(unsigned long clone_flags, struct task_struct *p) if (!(clone_flags & CLONE_PTRACE)) p->ptrace = 0; p->flags = new_flags; + clear_freeze_flag(p); } asmlinkage long sys_set_tid_address(int __user *tidptr)