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

Commit 2abdad0a authored by Harvey Harrison's avatar Harvey Harrison Committed by Ingo Molnar
Browse files

sched: make rt_sched_class, idle_sched_class static



The C files are included directly in sched.c, so they are
effectively static.

Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Acked-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent e05510d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ static void prio_changed_idle(struct rq *rq, struct task_struct *p,
/*
 * Simple, special scheduling class for the per-CPU idle tasks:
 */
const struct sched_class idle_sched_class = {
static const struct sched_class idle_sched_class = {
	/* .next is NULL */
	/* no enqueue/yield_task for idle tasks */

+1 −1
Original line number Diff line number Diff line
@@ -1309,7 +1309,7 @@ static void set_curr_task_rt(struct rq *rq)
	p->se.exec_start = rq->clock;
}

const struct sched_class rt_sched_class = {
static const struct sched_class rt_sched_class = {
	.next			= &fair_sched_class,
	.enqueue_task		= enqueue_task_rt,
	.dequeue_task		= dequeue_task_rt,