2 * idle-task scheduling class.
4 * (NOTE: these are not related to SCHED_IDLE tasks which are
5 * handled in sched_fair.c)
10 select_task_rq_idle(struct rq
*rq
, struct task_struct
*p
, int sd_flag
, int flags
)
12 return task_cpu(p
); /* IDLE tasks as never migrated */
14 #endif /* CONFIG_SMP */
16 * Idle tasks are unconditionally rescheduled:
18 static void check_preempt_curr_idle(struct rq
*rq
, struct task_struct
*p
, int flags
)
20 resched_task(rq
->idle
);
23 static struct task_struct
*pick_next_task_idle(struct rq
*rq
)
25 schedstat_inc(rq
, sched_goidle
);
26 /* adjust the active tasks as we might go into a long sleep */
27 calc_load_account_active(rq
);
32 * It is not legal to sleep in the idle task - print a warning
33 * message if some code attempts to do it:
36 dequeue_task_idle(struct rq
*rq
, struct task_struct
*p
, int sleep
)
38 raw_spin_unlock_irq(&rq
->lock
);
39 printk(KERN_ERR
"bad: scheduling from the idle thread!\n");
41 raw_spin_lock_irq(&rq
->lock
);
44 static void put_prev_task_idle(struct rq
*rq
, struct task_struct
*prev
)
48 static void task_tick_idle(struct rq
*rq
, struct task_struct
*curr
, int queued
)
52 static void set_curr_task_idle(struct rq
*rq
)
56 static void switched_to_idle(struct rq
*rq
, struct task_struct
*p
,
59 /* Can this actually happen?? */
61 resched_task(rq
->curr
);
63 check_preempt_curr(rq
, p
, 0);
66 static void prio_changed_idle(struct rq
*rq
, struct task_struct
*p
,
67 int oldprio
, int running
)
69 /* This can happen for hot plug CPUS */
72 * Reschedule if we are currently running on this runqueue and
73 * our priority decreased, or if we are not currently running on
74 * this runqueue and our priority is higher than the current's
77 if (p
->prio
> oldprio
)
78 resched_task(rq
->curr
);
80 check_preempt_curr(rq
, p
, 0);
83 static unsigned int get_rr_interval_idle(struct rq
*rq
, struct task_struct
*task
)
89 * Simple, special scheduling class for the per-CPU idle tasks:
91 static const struct sched_class idle_sched_class
= {
93 /* no enqueue/yield_task for idle tasks */
95 /* dequeue is not valid, we print a debug message there: */
96 .dequeue_task
= dequeue_task_idle
,
98 .check_preempt_curr
= check_preempt_curr_idle
,
100 .pick_next_task
= pick_next_task_idle
,
101 .put_prev_task
= put_prev_task_idle
,
104 .select_task_rq
= select_task_rq_idle
,
107 .set_curr_task
= set_curr_task_idle
,
108 .task_tick
= task_tick_idle
,
110 .get_rr_interval
= get_rr_interval_idle
,
112 .prio_changed
= prio_changed_idle
,
113 .switched_to
= switched_to_idle
,
115 /* no .task_new for idle tasks */