aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched
diff options
context:
space:
mode:
authorDongsheng Yang <yangds.fnst@cn.fujitsu.com>2014-05-08 05:35:15 -0400
committerIngo Molnar <mingo@kernel.org>2014-05-22 05:16:31 -0400
commita9467fa3cd2d5bf39e7cb7d0706d29d7ef4df212 (patch)
tree3cdc0ddf76f3b081ba3b5a2b061638595d117a33 /kernel/sched
parentcaffcdd8d27ba78730d5540396ce72ad022aff2c (diff)
sched: Use clamp() and clamp_val() to make sys_nice() more readable
Suggested-by: Kees Cook <keescook@chromium.org> Signed-off-by: Dongsheng Yang <yangds.fnst@cn.fujitsu.com> Signed-off-by: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/1399541715-19568-1-git-send-email-yangds.fnst@cn.fujitsu.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/sched')
-rw-r--r--kernel/sched/core.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 6340c601475d..f5605b6deea4 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -3057,17 +3057,10 @@ SYSCALL_DEFINE1(nice, int, increment)
3057 * We don't have to worry. Conceptually one call occurs first 3057 * We don't have to worry. Conceptually one call occurs first
3058 * and we have a single winner. 3058 * and we have a single winner.
3059 */ 3059 */
3060 if (increment < -40) 3060 increment = clamp(increment, -NICE_WIDTH, NICE_WIDTH);
3061 increment = -40;
3062 if (increment > 40)
3063 increment = 40;
3064
3065 nice = task_nice(current) + increment; 3061 nice = task_nice(current) + increment;
3066 if (nice < MIN_NICE)
3067 nice = MIN_NICE;
3068 if (nice > MAX_NICE)
3069 nice = MAX_NICE;
3070 3062
3063 nice = clamp_val(nice, MIN_NICE, MAX_NICE);
3071 if (increment < 0 && !can_nice(current, nice)) 3064 if (increment < 0 && !can_nice(current, nice))
3072 return -EPERM; 3065 return -EPERM;
3073 3066