aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/sched.h5
-rw-r--r--kernel/irq/manage.c4
-rw-r--r--kernel/kthread.c2
-rw-r--r--kernel/sched.c6
-rw-r--r--kernel/softirq.c4
-rw-r--r--kernel/trace/trace_selftest.c2
-rw-r--r--kernel/watchdog.c2
7 files changed, 15 insertions, 10 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 0383601a927..849c8670583 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1942,9 +1942,10 @@ extern int task_nice(const struct task_struct *p);
1942extern int can_nice(const struct task_struct *p, const int nice); 1942extern int can_nice(const struct task_struct *p, const int nice);
1943extern int task_curr(const struct task_struct *p); 1943extern int task_curr(const struct task_struct *p);
1944extern int idle_cpu(int cpu); 1944extern int idle_cpu(int cpu);
1945extern int sched_setscheduler(struct task_struct *, int, struct sched_param *); 1945extern int sched_setscheduler(struct task_struct *, int,
1946 const struct sched_param *);
1946extern int sched_setscheduler_nocheck(struct task_struct *, int, 1947extern int sched_setscheduler_nocheck(struct task_struct *, int,
1947 struct sched_param *); 1948 const struct sched_param *);
1948extern struct task_struct *idle_task(int cpu); 1949extern struct task_struct *idle_task(int cpu);
1949extern struct task_struct *curr_task(int cpu); 1950extern struct task_struct *curr_task(int cpu);
1950extern void set_curr_task(int cpu, struct task_struct *p); 1951extern void set_curr_task(int cpu, struct task_struct *p);
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index 644e8d5fa36..850f030fa0c 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -573,7 +573,9 @@ irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action) { }
573 */ 573 */
574static int irq_thread(void *data) 574static int irq_thread(void *data)
575{ 575{
576 struct sched_param param = { .sched_priority = MAX_USER_RT_PRIO/2, }; 576 static struct sched_param param = {
577 .sched_priority = MAX_USER_RT_PRIO/2,
578 };
577 struct irqaction *action = data; 579 struct irqaction *action = data;
578 struct irq_desc *desc = irq_to_desc(action->irq); 580 struct irq_desc *desc = irq_to_desc(action->irq);
579 int wake, oneshot = desc->status & IRQ_ONESHOT; 581 int wake, oneshot = desc->status & IRQ_ONESHOT;
diff --git a/kernel/kthread.c b/kernel/kthread.c
index 2dc3786349d..74cf6f5e7ad 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -148,7 +148,7 @@ struct task_struct *kthread_create(int (*threadfn)(void *data),
148 wait_for_completion(&create.done); 148 wait_for_completion(&create.done);
149 149
150 if (!IS_ERR(create.result)) { 150 if (!IS_ERR(create.result)) {
151 struct sched_param param = { .sched_priority = 0 }; 151 static struct sched_param param = { .sched_priority = 0 };
152 va_list args; 152 va_list args;
153 153
154 va_start(args, namefmt); 154 va_start(args, namefmt);
diff --git a/kernel/sched.c b/kernel/sched.c
index d42992bccdf..51944e8c38a 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
4703static int __sched_setscheduler(struct task_struct *p, int policy, 4703static 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 */
4858int sched_setscheduler(struct task_struct *p, int policy, 4858int 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 */
4876int sched_setscheduler_nocheck(struct task_struct *p, int policy, 4876int 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}
diff --git a/kernel/softirq.c b/kernel/softirq.c
index fc978889b19..081869ed3a9 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -851,7 +851,9 @@ static int __cpuinit cpu_callback(struct notifier_block *nfb,
851 cpumask_any(cpu_online_mask)); 851 cpumask_any(cpu_online_mask));
852 case CPU_DEAD: 852 case CPU_DEAD:
853 case CPU_DEAD_FROZEN: { 853 case CPU_DEAD_FROZEN: {
854 struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 }; 854 static struct sched_param param = {
855 .sched_priority = MAX_RT_PRIO-1
856 };
855 857
856 p = per_cpu(ksoftirqd, hotcpu); 858 p = per_cpu(ksoftirqd, hotcpu);
857 per_cpu(ksoftirqd, hotcpu) = NULL; 859 per_cpu(ksoftirqd, hotcpu) = NULL;
diff --git a/kernel/trace/trace_selftest.c b/kernel/trace/trace_selftest.c
index 155a415b320..562c56e048f 100644
--- a/kernel/trace/trace_selftest.c
+++ b/kernel/trace/trace_selftest.c
@@ -558,7 +558,7 @@ trace_selftest_startup_nop(struct tracer *trace, struct trace_array *tr)
558static int trace_wakeup_test_thread(void *data) 558static int trace_wakeup_test_thread(void *data)
559{ 559{
560 /* Make this a RT thread, doesn't need to be too high */ 560 /* Make this a RT thread, doesn't need to be too high */
561 struct sched_param param = { .sched_priority = 5 }; 561 static struct sched_param param = { .sched_priority = 5 };
562 struct completion *x = data; 562 struct completion *x = data;
563 563
564 sched_setscheduler(current, SCHED_FIFO, &param); 564 sched_setscheduler(current, SCHED_FIFO, &param);
diff --git a/kernel/watchdog.c b/kernel/watchdog.c
index bafba687a6d..94ca779aa9c 100644
--- a/kernel/watchdog.c
+++ b/kernel/watchdog.c
@@ -307,7 +307,7 @@ static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
307 */ 307 */
308static int watchdog(void *unused) 308static int watchdog(void *unused)
309{ 309{
310 struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 }; 310 static struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
311 struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer); 311 struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer);
312 312
313 sched_setscheduler(current, SCHED_FIFO, &param); 313 sched_setscheduler(current, SCHED_FIFO, &param);