blob: bf9c25c15b8badfc340dabcb9067ff2437b6d431 [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
8/*
9 * Idle tasks are unconditionally rescheduled:
10 */
11static void check_preempt_curr_idle(struct rq *rq, struct task_struct *p)
12{
13 resched_task(rq->idle);
14}
15
Ingo Molnarfb8d4722007-08-09 11:16:48 +020016static struct task_struct *pick_next_task_idle(struct rq *rq)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020017{
18 schedstat_inc(rq, sched_goidle);
19
20 return rq->idle;
21}
22
23/*
24 * It is not legal to sleep in the idle task - print a warning
25 * message if some code attempts to do it:
26 */
27static void
Ingo Molnarf02231e2007-08-09 11:16:48 +020028dequeue_task_idle(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020029{
30 spin_unlock_irq(&rq->lock);
31 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
32 dump_stack();
33 spin_lock_irq(&rq->lock);
34}
35
Ingo Molnar31ee5292007-08-09 11:16:49 +020036static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020037{
38}
39
Peter Williams681f3e62007-10-24 18:23:51 +020040#ifdef CONFIG_SMP
Peter Williams43010652007-08-09 11:16:46 +020041static unsigned long
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020042load_balance_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williamse1d14842007-10-24 18:23:51 +020043 unsigned long max_load_move,
44 struct sched_domain *sd, enum cpu_idle_type idle,
45 int *all_pinned, int *this_best_prio)
46{
47 return 0;
48}
49
50static int
51move_one_task_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
52 struct sched_domain *sd, enum cpu_idle_type idle)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020053{
54 return 0;
55}
Peter Williams681f3e62007-10-24 18:23:51 +020056#endif
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020057
58static void task_tick_idle(struct rq *rq, struct task_struct *curr)
59{
60}
61
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +020062static void set_curr_task_idle(struct rq *rq)
63{
64}
65
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020066/*
67 * Simple, special scheduling class for the per-CPU idle tasks:
68 */
Ingo Molnar5522d5d2007-10-15 17:00:12 +020069const struct sched_class idle_sched_class = {
70 /* .next is NULL */
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020071 /* no enqueue/yield_task for idle tasks */
72
73 /* dequeue is not valid, we print a debug message there: */
74 .dequeue_task = dequeue_task_idle,
75
76 .check_preempt_curr = check_preempt_curr_idle,
77
78 .pick_next_task = pick_next_task_idle,
79 .put_prev_task = put_prev_task_idle,
80
Peter Williams681f3e62007-10-24 18:23:51 +020081#ifdef CONFIG_SMP
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020082 .load_balance = load_balance_idle,
Peter Williamse1d14842007-10-24 18:23:51 +020083 .move_one_task = move_one_task_idle,
Peter Williams681f3e62007-10-24 18:23:51 +020084#endif
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020085
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +020086 .set_curr_task = set_curr_task_idle,
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020087 .task_tick = task_tick_idle,
88 /* no .task_new for idle tasks */
89};