diff options
author | Américo Wang <[email protected]> | 2009-02-16 18:54:21 +0800 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2009-02-16 13:45:52 +0100 |
commit | 2b8f836fb196acede88b6cc772e9057e0a9c0223 (patch) | |
tree | a34ba7ed839747eae402626b172a9b7d0a88bd87 | |
parent | a0a522ce3d6d8c907e45d4f2730ee8573484cc88 (diff) |
sched: use TASK_NICE for task_struct
#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
So it's better to use TASK_NICE here.
Signed-off-by: WANG Cong <[email protected]>
Acked-by: Peter Zijlstra <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | kernel/sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 648154cf1117..5475d56a20f1 100644 --- a/kernel/sched.c +++ b/kernel/sched.c @@ -5236,7 +5236,7 @@ SYSCALL_DEFINE1(nice, int, increment) if (increment > 40) increment = 40; - nice = PRIO_TO_NICE(current->static_prio) + increment; + nice = TASK_NICE(current) + increment; if (nice < -20) nice = -20; if (nice > 19) |