sched: Fix UP update_avg() build warning
[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
0017d735
PZ
9static int
10select_task_rq_idle(struct rq *rq, struct task_struct *p, int sd_flag, int flags)
e7693a36
GH
11{
12 return task_cpu(p); /* IDLE tasks as never migrated */
13}
14#endif /* CONFIG_SMP */
fa72e9e4
IM
15/*
16 * Idle tasks are unconditionally rescheduled:
17 */
7d478721 18static void check_preempt_curr_idle(struct rq *rq, struct task_struct *p, int flags)
fa72e9e4
IM
19{
20 resched_task(rq->idle);
21}
22
fb8d4724 23static struct task_struct *pick_next_task_idle(struct rq *rq)
fa72e9e4
IM
24{
25 schedstat_inc(rq, sched_goidle);
dce48a84
TG
26 /* adjust the active tasks as we might go into a long sleep */
27 calc_load_account_active(rq);
fa72e9e4
IM
28 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
371fd7e7 36dequeue_task_idle(struct rq *rq, struct task_struct *p, int flags)
fa72e9e4 37{
05fa785c 38 raw_spin_unlock_irq(&rq->lock);
3df0fc5b 39 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
fa72e9e4 40 dump_stack();
05fa785c 41 raw_spin_lock_irq(&rq->lock);
fa72e9e4
IM
42}
43
31ee529c 44static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
fa72e9e4
IM
45{
46}
47
8f4d37ec 48static void task_tick_idle(struct rq *rq, struct task_struct *curr, int queued)
fa72e9e4
IM
49{
50}
51
83b699ed
SV
52static void set_curr_task_idle(struct rq *rq)
53{
54}
55
cb469845
SR
56static 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
15afe09b 63 check_preempt_curr(rq, p, 0);
cb469845
SR
64}
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
15afe09b 80 check_preempt_curr(rq, p, 0);
cb469845
SR
81}
82
6d686f45 83static unsigned int get_rr_interval_idle(struct rq *rq, struct task_struct *task)
0d721cea
PW
84{
85 return 0;
86}
87
fa72e9e4
IM
88/*
89 * Simple, special scheduling class for the per-CPU idle tasks:
90 */
2abdad0a 91static const struct sched_class idle_sched_class = {
5522d5d5 92 /* .next is NULL */
fa72e9e4
IM
93 /* 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
681f3e68 103#ifdef CONFIG_SMP
4ce72a2c 104 .select_task_rq = select_task_rq_idle,
681f3e68 105#endif
fa72e9e4 106
83b699ed 107 .set_curr_task = set_curr_task_idle,
fa72e9e4 108 .task_tick = task_tick_idle,
cb469845 109
0d721cea
PW
110 .get_rr_interval = get_rr_interval_idle,
111
cb469845
SR
112 .prio_changed = prio_changed_idle,
113 .switched_to = switched_to_idle,
114
fa72e9e4
IM
115 /* no .task_new for idle tasks */
116};