2 * stop-task scheduling class.
4 * The stop task is the highest priority task in the system, it preempts
5 * everything and will be preempted by nothing.
7 * See kernel/stop_machine.c
12 select_task_rq_stop(struct task_struct
*p
, int sd_flag
, int flags
)
14 return task_cpu(p
); /* stop tasks as never migrate */
16 #endif /* CONFIG_SMP */
19 check_preempt_curr_stop(struct rq
*rq
, struct task_struct
*p
, int flags
)
21 /* we're never preempted */
24 static struct task_struct
*pick_next_task_stop(struct rq
*rq
)
26 struct task_struct
*stop
= rq
->stop
;
28 if (stop
&& stop
->on_rq
) {
29 stop
->se
.exec_start
= rq
->clock_task
;
37 enqueue_task_stop(struct rq
*rq
, struct task_struct
*p
, int flags
)
43 dequeue_task_stop(struct rq
*rq
, struct task_struct
*p
, int flags
)
48 static void yield_task_stop(struct rq
*rq
)
50 BUG(); /* the stop task should never yield, its pointless. */
53 static void put_prev_task_stop(struct rq
*rq
, struct task_struct
*prev
)
55 struct task_struct
*curr
= rq
->curr
;
58 delta_exec
= rq
->clock_task
- curr
->se
.exec_start
;
59 if (unlikely((s64
)delta_exec
< 0))
62 schedstat_set(curr
->se
.statistics
.exec_max
,
63 max(curr
->se
.statistics
.exec_max
, delta_exec
));
65 curr
->se
.sum_exec_runtime
+= delta_exec
;
66 account_group_exec_runtime(curr
, delta_exec
);
68 curr
->se
.exec_start
= rq
->clock_task
;
69 cpuacct_charge(curr
, delta_exec
);
72 static void task_tick_stop(struct rq
*rq
, struct task_struct
*curr
, int queued
)
76 static void set_curr_task_stop(struct rq
*rq
)
78 struct task_struct
*stop
= rq
->stop
;
80 stop
->se
.exec_start
= rq
->clock_task
;
83 static void switched_to_stop(struct rq
*rq
, struct task_struct
*p
)
85 BUG(); /* its impossible to change to this class */
89 prio_changed_stop(struct rq
*rq
, struct task_struct
*p
, int oldprio
)
91 BUG(); /* how!?, what priority? */
95 get_rr_interval_stop(struct rq
*rq
, struct task_struct
*task
)
101 * Simple, special scheduling class for the per-CPU stop tasks:
103 static const struct sched_class stop_sched_class
= {
104 .next
= &rt_sched_class
,
106 .enqueue_task
= enqueue_task_stop
,
107 .dequeue_task
= dequeue_task_stop
,
108 .yield_task
= yield_task_stop
,
110 .check_preempt_curr
= check_preempt_curr_stop
,
112 .pick_next_task
= pick_next_task_stop
,
113 .put_prev_task
= put_prev_task_stop
,
116 .select_task_rq
= select_task_rq_stop
,
119 .set_curr_task
= set_curr_task_stop
,
120 .task_tick
= task_tick_stop
,
122 .get_rr_interval
= get_rr_interval_stop
,
124 .prio_changed
= prio_changed_stop
,
125 .switched_to
= switched_to_stop
,