Merge branch 'for-33' of git://repo.or.cz/linux-kbuild
[linux-2.6-block.git] / kernel / sched_idletask.c
CommitLineData
fa72e9e4
IM
1/*
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
e7693a36 8#ifdef CONFIG_SMP
7d478721 9static int select_task_rq_idle(struct task_struct *p, int sd_flag, int flags)
e7693a36
GH
10{
11 return task_cpu(p); /* IDLE tasks as never migrated */
12}
13#endif /* CONFIG_SMP */
fa72e9e4
IM
14/*
15 * Idle tasks are unconditionally rescheduled:
16 */
7d478721 17static void check_preempt_curr_idle(struct rq *rq, struct task_struct *p, int flags)
fa72e9e4
IM
18{
19 resched_task(rq->idle);
20}
21
fb8d4724 22static struct task_struct *pick_next_task_idle(struct rq *rq)
fa72e9e4
IM
23{
24 schedstat_inc(rq, sched_goidle);
dce48a84
TG
25 /* adjust the active tasks as we might go into a long sleep */
26 calc_load_account_active(rq);
fa72e9e4
IM
27 return rq->idle;
28}
29
30/*
31 * It is not legal to sleep in the idle task - print a warning
32 * message if some code attempts to do it:
33 */
34static void
f02231e5 35dequeue_task_idle(struct rq *rq, struct task_struct *p, int sleep)
fa72e9e4 36{
05fa785c 37 raw_spin_unlock_irq(&rq->lock);
fa72e9e4
IM
38 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
39 dump_stack();
05fa785c 40 raw_spin_lock_irq(&rq->lock);
fa72e9e4
IM
41}
42
31ee529c 43static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
fa72e9e4
IM
44{
45}
46
681f3e68 47#ifdef CONFIG_SMP
43010659 48static unsigned long
fa72e9e4 49load_balance_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
e1d1484f
PW
50 unsigned long max_load_move,
51 struct sched_domain *sd, enum cpu_idle_type idle,
52 int *all_pinned, int *this_best_prio)
53{
54 return 0;
55}
56
57static int
58move_one_task_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
59 struct sched_domain *sd, enum cpu_idle_type idle)
fa72e9e4
IM
60{
61 return 0;
62}
681f3e68 63#endif
fa72e9e4 64
8f4d37ec 65static void task_tick_idle(struct rq *rq, struct task_struct *curr, int queued)
fa72e9e4
IM
66{
67}
68
83b699ed
SV
69static void set_curr_task_idle(struct rq *rq)
70{
71}
72
cb469845
SR
73static void switched_to_idle(struct rq *rq, struct task_struct *p,
74 int running)
75{
76 /* Can this actually happen?? */
77 if (running)
78 resched_task(rq->curr);
79 else
15afe09b 80 check_preempt_curr(rq, p, 0);
cb469845
SR
81}
82
83static void prio_changed_idle(struct rq *rq, struct task_struct *p,
84 int oldprio, int running)
85{
86 /* This can happen for hot plug CPUS */
87
88 /*
89 * Reschedule if we are currently running on this runqueue and
90 * our priority decreased, or if we are not currently running on
91 * this runqueue and our priority is higher than the current's
92 */
93 if (running) {
94 if (p->prio > oldprio)
95 resched_task(rq->curr);
96 } else
15afe09b 97 check_preempt_curr(rq, p, 0);
cb469845
SR
98}
99
dba091b9 100unsigned int get_rr_interval_idle(struct rq *rq, struct task_struct *task)
0d721cea
PW
101{
102 return 0;
103}
104
fa72e9e4
IM
105/*
106 * Simple, special scheduling class for the per-CPU idle tasks:
107 */
2abdad0a 108static const struct sched_class idle_sched_class = {
5522d5d5 109 /* .next is NULL */
fa72e9e4
IM
110 /* no enqueue/yield_task for idle tasks */
111
112 /* dequeue is not valid, we print a debug message there: */
113 .dequeue_task = dequeue_task_idle,
114
115 .check_preempt_curr = check_preempt_curr_idle,
116
117 .pick_next_task = pick_next_task_idle,
118 .put_prev_task = put_prev_task_idle,
119
681f3e68 120#ifdef CONFIG_SMP
4ce72a2c
LZ
121 .select_task_rq = select_task_rq_idle,
122
fa72e9e4 123 .load_balance = load_balance_idle,
e1d1484f 124 .move_one_task = move_one_task_idle,
681f3e68 125#endif
fa72e9e4 126
83b699ed 127 .set_curr_task = set_curr_task_idle,
fa72e9e4 128 .task_tick = task_tick_idle,
cb469845 129
0d721cea
PW
130 .get_rr_interval = get_rr_interval_idle,
131
cb469845
SR
132 .prio_changed = prio_changed_idle,
133 .switched_to = switched_to_idle,
134
fa72e9e4
IM
135 /* no .task_new for idle tasks */
136};