lkml.org 
[lkml]   [2014]   [Mar]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 2/3] sched/prio: Replace hardcoding of 40 with NICE_WIDTH.
Date
Signed-off-by: Dongsheng Yang <yangds.fnst@cn.fujitsu.com>
---
kernel/sched/core.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 9e126a2..259ab85 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -3068,10 +3068,10 @@ SYSCALL_DEFINE1(nice, int, increment)
* We don't have to worry. Conceptually one call occurs first
* and we have a single winner.
*/
- if (increment < -40)
- increment = -40;
- if (increment > 40)
- increment = 40;
+ if (increment < -NICE_WIDTH)
+ increment = -NICE_WIDTH;
+ if (increment > NICE_WIDTH)
+ increment = NICE_WIDTH;

nice = task_nice(current) + increment;
if (nice < MIN_NICE)
--
1.8.2.1


\
 
 \ /
  Last update: 2014-03-12 13:01    [W:0.166 / U:1.576 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site