]>
Commit | Line | Data |
---|---|---|
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 | 9 | static int |
7608dec2 | 10 | select_task_rq_idle(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 | 18 | static 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 | 23 | static struct task_struct *pick_next_task_idle(struct rq *rq) |
fa72e9e4 IM |
24 | { |
25 | schedstat_inc(rq, sched_goidle); | |
74f5187a | 26 | calc_load_account_idle(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 | */ | |
34 | static void | |
371fd7e7 | 35 | dequeue_task_idle(struct rq *rq, struct task_struct *p, int flags) |
fa72e9e4 | 36 | { |
05fa785c | 37 | raw_spin_unlock_irq(&rq->lock); |
3df0fc5b | 38 | printk(KERN_ERR "bad: scheduling from the idle thread!\n"); |
fa72e9e4 | 39 | dump_stack(); |
05fa785c | 40 | raw_spin_lock_irq(&rq->lock); |
fa72e9e4 IM |
41 | } |
42 | ||
31ee529c | 43 | static void put_prev_task_idle(struct rq *rq, struct task_struct *prev) |
fa72e9e4 IM |
44 | { |
45 | } | |
46 | ||
8f4d37ec | 47 | static void task_tick_idle(struct rq *rq, struct task_struct *curr, int queued) |
fa72e9e4 IM |
48 | { |
49 | } | |
50 | ||
83b699ed SV |
51 | static void set_curr_task_idle(struct rq *rq) |
52 | { | |
53 | } | |
54 | ||
da7a735e | 55 | static void switched_to_idle(struct rq *rq, struct task_struct *p) |
cb469845 | 56 | { |
a8941d7e | 57 | BUG(); |
cb469845 SR |
58 | } |
59 | ||
da7a735e PZ |
60 | static void |
61 | prio_changed_idle(struct rq *rq, struct task_struct *p, int oldprio) | |
cb469845 | 62 | { |
a8941d7e | 63 | BUG(); |
cb469845 SR |
64 | } |
65 | ||
6d686f45 | 66 | static unsigned int get_rr_interval_idle(struct rq *rq, struct task_struct *task) |
0d721cea PW |
67 | { |
68 | return 0; | |
69 | } | |
70 | ||
fa72e9e4 IM |
71 | /* |
72 | * Simple, special scheduling class for the per-CPU idle tasks: | |
73 | */ | |
2abdad0a | 74 | static const struct sched_class idle_sched_class = { |
5522d5d5 | 75 | /* .next is NULL */ |
fa72e9e4 IM |
76 | /* no enqueue/yield_task for idle tasks */ |
77 | ||
78 | /* dequeue is not valid, we print a debug message there: */ | |
79 | .dequeue_task = dequeue_task_idle, | |
80 | ||
81 | .check_preempt_curr = check_preempt_curr_idle, | |
82 | ||
83 | .pick_next_task = pick_next_task_idle, | |
84 | .put_prev_task = put_prev_task_idle, | |
85 | ||
681f3e68 | 86 | #ifdef CONFIG_SMP |
4ce72a2c | 87 | .select_task_rq = select_task_rq_idle, |
681f3e68 | 88 | #endif |
fa72e9e4 | 89 | |
83b699ed | 90 | .set_curr_task = set_curr_task_idle, |
fa72e9e4 | 91 | .task_tick = task_tick_idle, |
cb469845 | 92 | |
0d721cea PW |
93 | .get_rr_interval = get_rr_interval_idle, |
94 | ||
cb469845 SR |
95 | .prio_changed = prio_changed_idle, |
96 | .switched_to = switched_to_idle, | |
fa72e9e4 | 97 | }; |