diff options
Diffstat (limited to 'kernel/sched.c')
-rw-r--r-- | kernel/sched.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index d42992bccdfa..51944e8c38a8 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -4701,7 +4701,7 @@ static bool check_same_owner(struct task_struct *p) | |||
4701 | } | 4701 | } |
4702 | 4702 | ||
4703 | static int __sched_setscheduler(struct task_struct *p, int policy, | 4703 | static int __sched_setscheduler(struct task_struct *p, int policy, |
4704 | struct sched_param *param, bool user) | 4704 | const struct sched_param *param, bool user) |
4705 | { | 4705 | { |
4706 | int retval, oldprio, oldpolicy = -1, on_rq, running; | 4706 | int retval, oldprio, oldpolicy = -1, on_rq, running; |
4707 | unsigned long flags; | 4707 | unsigned long flags; |
@@ -4856,7 +4856,7 @@ recheck: | |||
4856 | * NOTE that the task may be already dead. | 4856 | * NOTE that the task may be already dead. |
4857 | */ | 4857 | */ |
4858 | int sched_setscheduler(struct task_struct *p, int policy, | 4858 | int sched_setscheduler(struct task_struct *p, int policy, |
4859 | struct sched_param *param) | 4859 | const struct sched_param *param) |
4860 | { | 4860 | { |
4861 | return __sched_setscheduler(p, policy, param, true); | 4861 | return __sched_setscheduler(p, policy, param, true); |
4862 | } | 4862 | } |
@@ -4874,7 +4874,7 @@ EXPORT_SYMBOL_GPL(sched_setscheduler); | |||
4874 | * but our caller might not have that capability. | 4874 | * but our caller might not have that capability. |
4875 | */ | 4875 | */ |
4876 | int sched_setscheduler_nocheck(struct task_struct *p, int policy, | 4876 | int sched_setscheduler_nocheck(struct task_struct *p, int policy, |
4877 | struct sched_param *param) | 4877 | const struct sched_param *param) |
4878 | { | 4878 | { |
4879 | return __sched_setscheduler(p, policy, param, false); | 4879 | return __sched_setscheduler(p, policy, param, false); |
4880 | } | 4880 | } |