sched: Fix up attr::sched_priority warning
authorPeter Zijlstra <[email protected]>
Wed, 15 Jan 2014 16:15:13 +0000 (17:15 +0100)
committerIngo Molnar <[email protected]>
Thu, 16 Jan 2014 08:27:16 +0000 (09:27 +0100)
commit0bb040a44381261c0729636abbe03caeedb7d72e
tree93aadef8749484368b3a83c353722d691fad7c47
parent39fd8fd22b3224ec6819d33b3e34ae4da6a35f05
sched: Fix up attr::sched_priority warning

Fengguang Wu reported the following build warning:

  > kernel/sched/core.c:3067 __sched_setscheduler() warn: unsigned 'attr->sched_priority' is never less than zero.

Since it doesn't make sense for attr::sched_priority to be negative,
remove the check, since we already test for an upper limit any actual
negative values passed in through the old param::sched_priority field
will still be detected.

Reported-by: Fengguang Wu <[email protected]>
Signed-off-by: Peter Zijlstra <[email protected]>
Cc: Juri Lelli <[email protected]>
Cc: Dario Faggioli <[email protected]>
Fixes: d50dde5a10f3 ("sched: Add new scheduler syscalls to support an extended scheduling parameters ABI")
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
kernel/sched/core.c