]> git.baikalelectronics.ru Git - kernel.git/commit
sched: Fix __sched_setscheduler() nice test
authorPeter Zijlstra <peterz@infradead.org>
Thu, 16 Jan 2014 16:54:25 +0000 (17:54 +0100)
committerIngo Molnar <mingo@kernel.org>
Thu, 16 Jan 2014 17:07:08 +0000 (18:07 +0100)
commitfdec171c54d7b5411bff0809d820cd0a5118e09b
tree5f61d9611cfeabfae68ad4bc22583a87524a4478
parent520f73727b527fa948b45370c21a9d18b86678df
sched: Fix __sched_setscheduler() nice test

With the introduction of sched_attr::sched_nice we need to check
if we've got permission to actually change the nice value.

Daniel found that can_nice() would always fail; and upon
inspection it turns out that can_nice() only tests to see if we
can lower the nice value, but it doesn't validate if we're
lowering or not.

Therefore amend the test to only call can_nice() when we lower
the nice value.

Reported-and-Tested-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Cc: raistlin@linux.it
Cc: juri.lelli@gmail.com
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Fixes: 0631ff981a03 ("sched: Add new scheduler syscalls to support an extended scheduling parameters ABI")
Link: http://lkml.kernel.org/r/20140116165425.GA9481@laptop.programming.kicks-ass.net
Signed-off-by: Ingo Molnar <mingo@kernel.org>
kernel/sched/core.c