Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2b8f836f authored by Américo Wang's avatar Américo Wang Committed by Ingo Molnar
Browse files

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: default avatarWANG Cong <wangcong@zeuux.org>
Acked-by: default avatarPeter Zijlstra <peterz@infradead.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent a0a522ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)