blob: ca5374860aefbc7df952e7144c396ae183479fd1 [file] [log] [blame]
Ingo Molnarfa72e9e2007-07-09 18:51:58 +02001/*
2 * idle-task scheduling class.
3 *
4 * (NOTE: these are not related to SCHED_IDLE tasks which are
5 * handled in sched_fair.c)
6 */
7
Gregory Haskinse7693a32008-01-25 21:08:09 +01008#ifdef CONFIG_SMP
9static int select_task_rq_idle(struct task_struct *p, int sync)
10{
11 return task_cpu(p); /* IDLE tasks as never migrated */
12}
13#endif /* CONFIG_SMP */
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020014/*
15 * Idle tasks are unconditionally rescheduled:
16 */
17static void check_preempt_curr_idle(struct rq *rq, struct task_struct *p)
18{
19 resched_task(rq->idle);
20}
21
Ingo Molnarfb8d4722007-08-09 11:16:48 +020022static struct task_struct *pick_next_task_idle(struct rq *rq)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020023{
24 schedstat_inc(rq, sched_goidle);
25
26 return rq->idle;
27}
28
29/*
30 * It is not legal to sleep in the idle task - print a warning
31 * message if some code attempts to do it:
32 */
33static void
Ingo Molnarf02231e2007-08-09 11:16:48 +020034dequeue_task_idle(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020035{
36 spin_unlock_irq(&rq->lock);
37 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
38 dump_stack();
39 spin_lock_irq(&rq->lock);
40}
41
Ingo Molnar31ee5292007-08-09 11:16:49 +020042static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020043{
44}
45
Peter Williams681f3e62007-10-24 18:23:51 +020046#ifdef CONFIG_SMP
Peter Williams43010652007-08-09 11:16:46 +020047static unsigned long
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020048load_balance_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williamse1d14842007-10-24 18:23:51 +020049 unsigned long max_load_move,
50 struct sched_domain *sd, enum cpu_idle_type idle,
51 int *all_pinned, int *this_best_prio)
52{
53 return 0;
54}
55
56static int
57move_one_task_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
58 struct sched_domain *sd, enum cpu_idle_type idle)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020059{
60 return 0;
61}
Peter Williams681f3e62007-10-24 18:23:51 +020062#endif
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020063
64static void task_tick_idle(struct rq *rq, struct task_struct *curr)
65{
66}
67
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +020068static void set_curr_task_idle(struct rq *rq)
69{
70}
71
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020072/*
73 * Simple, special scheduling class for the per-CPU idle tasks:
74 */
Ingo Molnar5522d5d2007-10-15 17:00:12 +020075const struct sched_class idle_sched_class = {
76 /* .next is NULL */
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020077 /* no enqueue/yield_task for idle tasks */
78
79 /* dequeue is not valid, we print a debug message there: */
80 .dequeue_task = dequeue_task_idle,
Gregory Haskinse7693a32008-01-25 21:08:09 +010081#ifdef CONFIG_SMP
82 .select_task_rq = select_task_rq_idle,
83#endif /* CONFIG_SMP */
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020084
85 .check_preempt_curr = check_preempt_curr_idle,
86
87 .pick_next_task = pick_next_task_idle,
88 .put_prev_task = put_prev_task_idle,
89
Peter Williams681f3e62007-10-24 18:23:51 +020090#ifdef CONFIG_SMP
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020091 .load_balance = load_balance_idle,
Peter Williamse1d14842007-10-24 18:23:51 +020092 .move_one_task = move_one_task_idle,
Peter Williams681f3e62007-10-24 18:23:51 +020093#endif
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020094
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +020095 .set_curr_task = set_curr_task_idle,
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020096 .task_tick = task_tick_idle,
97 /* no .task_new for idle tasks */
98};