idle_task.c 2.4 KB
Newer Older
1 2
#include "sched.h"

3 4 5 6
/*
 * idle-task scheduling class.
 *
 * (NOTE: these are not related to SCHED_IDLE tasks which are
7
 *  handled in sched/fair.c)
8 9
 */

10
#ifdef CONFIG_SMP
11
static int
12
select_task_rq_idle(struct task_struct *p, int sd_flag, int flags)
13 14 15
{
	return task_cpu(p); /* IDLE tasks as never migrated */
}
16 17 18 19

static void pre_schedule_idle(struct rq *rq, struct task_struct *prev)
{
	idle_exit_fair(rq);
20
	rq_last_tick_reset(rq);
21 22 23 24 25 26
}

static void post_schedule_idle(struct rq *rq)
{
	idle_enter_fair(rq);
}
27
#endif /* CONFIG_SMP */
28 29 30
/*
 * Idle tasks are unconditionally rescheduled:
 */
P
Peter Zijlstra 已提交
31
static void check_preempt_curr_idle(struct rq *rq, struct task_struct *p, int flags)
32 33 34 35
{
	resched_task(rq->idle);
}

36
static struct task_struct *pick_next_task_idle(struct rq *rq)
37 38
{
	schedstat_inc(rq, sched_goidle);
39 40 41 42
#ifdef CONFIG_SMP
	/* Trigger the post schedule to do an idle_enter for CFS */
	rq->post_schedule = 1;
#endif
43 44 45 46 47 48 49 50
	return rq->idle;
}

/*
 * It is not legal to sleep in the idle task - print a warning
 * message if some code attempts to do it:
 */
static void
51
dequeue_task_idle(struct rq *rq, struct task_struct *p, int flags)
52
{
53
	raw_spin_unlock_irq(&rq->lock);
P
Peter Zijlstra 已提交
54
	printk(KERN_ERR "bad: scheduling from the idle thread!\n");
55
	dump_stack();
56
	raw_spin_lock_irq(&rq->lock);
57 58
}

59
static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
60 61 62
{
}

P
Peter Zijlstra 已提交
63
static void task_tick_idle(struct rq *rq, struct task_struct *curr, int queued)
64 65 66
{
}

67 68 69 70
static void set_curr_task_idle(struct rq *rq)
{
}

P
Peter Zijlstra 已提交
71
static void switched_to_idle(struct rq *rq, struct task_struct *p)
72
{
73
	BUG();
74 75
}

P
Peter Zijlstra 已提交
76 77
static void
prio_changed_idle(struct rq *rq, struct task_struct *p, int oldprio)
78
{
79
	BUG();
80 81
}

82
static unsigned int get_rr_interval_idle(struct rq *rq, struct task_struct *task)
83 84 85 86
{
	return 0;
}

87 88 89
/*
 * Simple, special scheduling class for the per-CPU idle tasks:
 */
90
const struct sched_class idle_sched_class = {
91
	/* .next is NULL */
92 93 94 95 96 97 98 99 100 101
	/* no enqueue/yield_task for idle tasks */

	/* dequeue is not valid, we print a debug message there: */
	.dequeue_task		= dequeue_task_idle,

	.check_preempt_curr	= check_preempt_curr_idle,

	.pick_next_task		= pick_next_task_idle,
	.put_prev_task		= put_prev_task_idle,

102
#ifdef CONFIG_SMP
L
Li Zefan 已提交
103
	.select_task_rq		= select_task_rq_idle,
104 105
	.pre_schedule		= pre_schedule_idle,
	.post_schedule		= post_schedule_idle,
106
#endif
107

108
	.set_curr_task          = set_curr_task_idle,
109
	.task_tick		= task_tick_idle,
110

111 112
	.get_rr_interval	= get_rr_interval_idle,

113 114
	.prio_changed		= prio_changed_idle,
	.switched_to		= switched_to_idle,
115
};