blob: 5af709f503b09aeb2edcbd211ea747fd3cbf9a45 [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
Peter Zijlstra0017d732010-03-24 18:34:10 +01009static int
10select_task_rq_idle(struct rq *rq, struct task_struct *p, int sd_flag, int flags)
Gregory Haskinse7693a32008-01-25 21:08:09 +010011{
12 return task_cpu(p); /* IDLE tasks as never migrated */
13}
14#endif /* CONFIG_SMP */
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020015/*
16 * Idle tasks are unconditionally rescheduled:
17 */
Peter Zijlstra7d478722009-09-14 19:55:44 +020018static void check_preempt_curr_idle(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020019{
20 resched_task(rq->idle);
21}
22
Ingo Molnarfb8d4722007-08-09 11:16:48 +020023static struct task_struct *pick_next_task_idle(struct rq *rq)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020024{
25 schedstat_inc(rq, sched_goidle);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +020026 /* adjust the active tasks as we might go into a long sleep */
27 calc_load_account_active(rq);
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020028 return rq->idle;
29}
30
31/*
32 * It is not legal to sleep in the idle task - print a warning
33 * message if some code attempts to do it:
34 */
35static void
Ingo Molnarf02231e2007-08-09 11:16:48 +020036dequeue_task_idle(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020037{
Thomas Gleixner05fa7852009-11-17 14:28:38 +010038 raw_spin_unlock_irq(&rq->lock);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +010039 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020040 dump_stack();
Thomas Gleixner05fa7852009-11-17 14:28:38 +010041 raw_spin_lock_irq(&rq->lock);
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020042}
43
Ingo Molnar31ee5292007-08-09 11:16:49 +020044static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020045{
46}
47
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010048static void task_tick_idle(struct rq *rq, struct task_struct *curr, int queued)
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020049{
50}
51
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +020052static void set_curr_task_idle(struct rq *rq)
53{
54}
55
Steven Rostedtcb469842008-01-25 21:08:22 +010056static void switched_to_idle(struct rq *rq, struct task_struct *p,
57 int running)
58{
59 /* Can this actually happen?? */
60 if (running)
61 resched_task(rq->curr);
62 else
Peter Zijlstra15afe092008-09-20 23:38:02 +020063 check_preempt_curr(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +010064}
65
66static void prio_changed_idle(struct rq *rq, struct task_struct *p,
67 int oldprio, int running)
68{
69 /* This can happen for hot plug CPUS */
70
71 /*
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
75 */
76 if (running) {
77 if (p->prio > oldprio)
78 resched_task(rq->curr);
79 } else
Peter Zijlstra15afe092008-09-20 23:38:02 +020080 check_preempt_curr(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +010081}
82
H Hartley Sweeten6d686f42010-01-13 20:21:52 -070083static unsigned int get_rr_interval_idle(struct rq *rq, struct task_struct *task)
Peter Williams0d721ce2009-09-21 01:31:53 +000084{
85 return 0;
86}
87
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020088/*
89 * Simple, special scheduling class for the per-CPU idle tasks:
90 */
Harvey Harrison2abdad02008-04-25 10:53:13 -070091static const struct sched_class idle_sched_class = {
Ingo Molnar5522d5d2007-10-15 17:00:12 +020092 /* .next is NULL */
Ingo Molnarfa72e9e2007-07-09 18:51:58 +020093 /* no enqueue/yield_task for idle tasks */
94
95 /* dequeue is not valid, we print a debug message there: */
96 .dequeue_task = dequeue_task_idle,
97
98 .check_preempt_curr = check_preempt_curr_idle,
99
100 .pick_next_task = pick_next_task_idle,
101 .put_prev_task = put_prev_task_idle,
102
Peter Williams681f3e62007-10-24 18:23:51 +0200103#ifdef CONFIG_SMP
Li Zefan4ce72a22008-10-22 15:25:26 +0800104 .select_task_rq = select_task_rq_idle,
Peter Williams681f3e62007-10-24 18:23:51 +0200105#endif
Ingo Molnarfa72e9e2007-07-09 18:51:58 +0200106
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +0200107 .set_curr_task = set_curr_task_idle,
Ingo Molnarfa72e9e2007-07-09 18:51:58 +0200108 .task_tick = task_tick_idle,
Steven Rostedtcb469842008-01-25 21:08:22 +0100109
Peter Williams0d721ce2009-09-21 01:31:53 +0000110 .get_rr_interval = get_rr_interval_idle,
111
Steven Rostedtcb469842008-01-25 21:08:22 +0100112 .prio_changed = prio_changed_idle,
113 .switched_to = switched_to_idle,
114
Ingo Molnarfa72e9e2007-07-09 18:51:58 +0200115 /* no .task_new for idle tasks */
116};