[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20090216105421.GB23665@hack.private>
Date: Mon, 16 Feb 2009 18:54:21 +0800
From: Américo Wang <xiyou.wangcong@...il.com>
To: LKML <linux-kernel@...r.kernel.org>
Cc: Ingo Molnar <mingo@...e.hu>
Subject: [Patch] 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 <wangcong@...ux.org>
Cc: Ingo Molnar <mingo@...e.hu>
---
diff --git a/kernel/sched.c b/kernel/sched.c
index c1d0ed3..a996bcc 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -5145,7 +5145,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)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists