summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorOleg Nesterov <oleg@tv-sign.ru>2006-09-29 11:00:51 +0200
committerLinus Torvalds <torvalds@g5.osdl.org>2006-09-29 18:18:18 +0200
commit1c573afebc6213e4372e0d8352034c23d5262e1f (patch)
tree89741782e842fcbe8d499cb0d07de818d37893eb /kernel
parent[PATCH] sched_setscheduler: fix? policy checks (diff)
downloadlinux-1c573afebc6213e4372e0d8352034c23d5262e1f.tar.xz
linux-1c573afebc6213e4372e0d8352034c23d5262e1f.zip
[PATCH] reparent_to_init(): use has_rt_policy()
Remove open-coded has_rt_policy(), no changes in kernel/exit.o Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@elte.hu> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Nick Piggin <nickpiggin@yahoo.com.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/exit.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/exit.c b/kernel/exit.c
index a51b347ae67b..4a280856acd2 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -281,9 +281,7 @@ static void reparent_to_init(void)
/* Set the exit signal to SIGCHLD so we signal init on exit */
current->exit_signal = SIGCHLD;
- if ((current->policy == SCHED_NORMAL ||
- current->policy == SCHED_BATCH)
- && (task_nice(current) < 0))
+ if (!has_rt_policy(current) && (task_nice(current) < 0))
set_user_nice(current, 0);
/* cpus_allowed? */
/* rt_priority? */