]> bbs.cooldavid.org Git - net-next-2.6.git/blame - kernel/sched_idletask.c
sched: reduce balance-tasks overhead
[net-next-2.6.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
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
fb8d4724 16static struct task_struct *pick_next_task_idle(struct rq *rq)
fa72e9e4
IM
17{
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
f02231e5 28dequeue_task_idle(struct rq *rq, struct task_struct *p, int sleep)
fa72e9e4
IM
29{
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
31ee529c 36static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
fa72e9e4
IM
37{
38}
39
43010659 40static unsigned long
fa72e9e4 41load_balance_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
e1d1484f
PW
42 unsigned long max_load_move,
43 struct sched_domain *sd, enum cpu_idle_type idle,
44 int *all_pinned, int *this_best_prio)
45{
46 return 0;
47}
48
49static int
50move_one_task_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
51 struct sched_domain *sd, enum cpu_idle_type idle)
fa72e9e4
IM
52{
53 return 0;
54}
55
56static void task_tick_idle(struct rq *rq, struct task_struct *curr)
57{
58}
59
83b699ed
SV
60static void set_curr_task_idle(struct rq *rq)
61{
62}
63
fa72e9e4
IM
64/*
65 * Simple, special scheduling class for the per-CPU idle tasks:
66 */
5522d5d5
IM
67const struct sched_class idle_sched_class = {
68 /* .next is NULL */
fa72e9e4
IM
69 /* no enqueue/yield_task for idle tasks */
70
71 /* dequeue is not valid, we print a debug message there: */
72 .dequeue_task = dequeue_task_idle,
73
74 .check_preempt_curr = check_preempt_curr_idle,
75
76 .pick_next_task = pick_next_task_idle,
77 .put_prev_task = put_prev_task_idle,
78
79 .load_balance = load_balance_idle,
e1d1484f 80 .move_one_task = move_one_task_idle,
fa72e9e4 81
83b699ed 82 .set_curr_task = set_curr_task_idle,
fa72e9e4
IM
83 .task_tick = task_tick_idle,
84 /* no .task_new for idle tasks */
85};