]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/sched/idle_task.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / kernel / sched / idle_task.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
029632fb
PZ
2#include "sched.h"
3
fa72e9e4
IM
4/*
5 * idle-task scheduling class.
6 *
7 * (NOTE: these are not related to SCHED_IDLE tasks which are
489a71b0 8 * handled in sched/fair.c)
fa72e9e4
IM
9 */
10
e7693a36 11#ifdef CONFIG_SMP
0017d735 12static int
ac66f547 13select_task_rq_idle(struct task_struct *p, int cpu, int sd_flag, int flags)
e7693a36
GH
14{
15 return task_cpu(p); /* IDLE tasks as never migrated */
16}
17#endif /* CONFIG_SMP */
38033c37 18
fa72e9e4
IM
19/*
20 * Idle tasks are unconditionally rescheduled:
21 */
7d478721 22static void check_preempt_curr_idle(struct rq *rq, struct task_struct *p, int flags)
fa72e9e4 23{
8875125e 24 resched_curr(rq);
fa72e9e4
IM
25}
26
606dba2e 27static struct task_struct *
d8ac8971 28pick_next_task_idle(struct rq *rq, struct task_struct *prev, struct rq_flags *rf)
fa72e9e4 29{
3f1d2a31 30 put_prev_task(rq, prev);
10e2f1ac 31 update_idle_core(rq);
ae92882e 32 schedstat_inc(rq->sched_goidle);
fa72e9e4
IM
33 return rq->idle;
34}
35
36/*
37 * It is not legal to sleep in the idle task - print a warning
38 * message if some code attempts to do it:
39 */
40static void
371fd7e7 41dequeue_task_idle(struct rq *rq, struct task_struct *p, int flags)
fa72e9e4 42{
05fa785c 43 raw_spin_unlock_irq(&rq->lock);
3df0fc5b 44 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
fa72e9e4 45 dump_stack();
05fa785c 46 raw_spin_lock_irq(&rq->lock);
fa72e9e4
IM
47}
48
31ee529c 49static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
fa72e9e4 50{
38033c37 51 rq_last_tick_reset(rq);
fa72e9e4
IM
52}
53
8f4d37ec 54static void task_tick_idle(struct rq *rq, struct task_struct *curr, int queued)
fa72e9e4
IM
55{
56}
57
83b699ed
SV
58static void set_curr_task_idle(struct rq *rq)
59{
60}
61
da7a735e 62static void switched_to_idle(struct rq *rq, struct task_struct *p)
cb469845 63{
a8941d7e 64 BUG();
cb469845
SR
65}
66
da7a735e
PZ
67static void
68prio_changed_idle(struct rq *rq, struct task_struct *p, int oldprio)
cb469845 69{
a8941d7e 70 BUG();
cb469845
SR
71}
72
6d686f45 73static unsigned int get_rr_interval_idle(struct rq *rq, struct task_struct *task)
0d721cea
PW
74{
75 return 0;
76}
77
90e362f4
TG
78static void update_curr_idle(struct rq *rq)
79{
80}
81
fa72e9e4
IM
82/*
83 * Simple, special scheduling class for the per-CPU idle tasks:
84 */
029632fb 85const struct sched_class idle_sched_class = {
5522d5d5 86 /* .next is NULL */
fa72e9e4
IM
87 /* no enqueue/yield_task for idle tasks */
88
89 /* dequeue is not valid, we print a debug message there: */
90 .dequeue_task = dequeue_task_idle,
91
92 .check_preempt_curr = check_preempt_curr_idle,
93
94 .pick_next_task = pick_next_task_idle,
95 .put_prev_task = put_prev_task_idle,
96
681f3e68 97#ifdef CONFIG_SMP
4ce72a2c 98 .select_task_rq = select_task_rq_idle,
c5b28038 99 .set_cpus_allowed = set_cpus_allowed_common,
681f3e68 100#endif
fa72e9e4 101
83b699ed 102 .set_curr_task = set_curr_task_idle,
fa72e9e4 103 .task_tick = task_tick_idle,
cb469845 104
0d721cea
PW
105 .get_rr_interval = get_rr_interval_idle,
106
cb469845
SR
107 .prio_changed = prio_changed_idle,
108 .switched_to = switched_to_idle,
90e362f4 109 .update_curr = update_curr_idle,
fa72e9e4 110};