Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 1 | #include "sched.h" |
| 2 | |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 3 | /* |
| 4 | * stop-task scheduling class. |
| 5 | * |
| 6 | * The stop task is the highest priority task in the system, it preempts |
| 7 | * everything and will be preempted by nothing. |
| 8 | * |
| 9 | * See kernel/stop_machine.c |
| 10 | */ |
| 11 | |
| 12 | #ifdef CONFIG_SMP |
| 13 | static int |
Peter Zijlstra | ac66f54 | 2013-10-07 11:29:16 +0100 | [diff] [blame] | 14 | select_task_rq_stop(struct task_struct *p, int cpu, int sd_flag, int flags) |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 15 | { |
| 16 | return task_cpu(p); /* stop tasks as never migrate */ |
| 17 | } |
| 18 | #endif /* CONFIG_SMP */ |
| 19 | |
| 20 | static void |
| 21 | check_preempt_curr_stop(struct rq *rq, struct task_struct *p, int flags) |
| 22 | { |
Peter Zijlstra | 1e5a740 | 2010-10-31 12:37:04 +0100 | [diff] [blame] | 23 | /* we're never preempted */ |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 24 | } |
| 25 | |
Peter Zijlstra | 606dba2 | 2012-02-11 06:05:00 +0100 | [diff] [blame] | 26 | static struct task_struct * |
| 27 | pick_next_task_stop(struct rq *rq, struct task_struct *prev) |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 28 | { |
| 29 | struct task_struct *stop = rq->stop; |
| 30 | |
Kirill Tkhai | da0c1e6 | 2014-08-20 13:47:32 +0400 | [diff] [blame] | 31 | if (!stop || !task_on_rq_queued(stop)) |
Peter Zijlstra | 606dba2 | 2012-02-11 06:05:00 +0100 | [diff] [blame] | 32 | return NULL; |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 33 | |
Peter Zijlstra | 3f1d2a3 | 2014-02-12 10:49:30 +0100 | [diff] [blame] | 34 | put_prev_task(rq, prev); |
Peter Zijlstra | 606dba2 | 2012-02-11 06:05:00 +0100 | [diff] [blame] | 35 | |
| 36 | stop->se.exec_start = rq_clock_task(rq); |
| 37 | |
| 38 | return stop; |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | static void |
| 42 | enqueue_task_stop(struct rq *rq, struct task_struct *p, int flags) |
| 43 | { |
Kirill Tkhai | 7246544 | 2014-05-09 03:00:14 +0400 | [diff] [blame] | 44 | add_nr_running(rq, 1); |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | static void |
| 48 | dequeue_task_stop(struct rq *rq, struct task_struct *p, int flags) |
| 49 | { |
Kirill Tkhai | 7246544 | 2014-05-09 03:00:14 +0400 | [diff] [blame] | 50 | sub_nr_running(rq, 1); |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | static void yield_task_stop(struct rq *rq) |
| 54 | { |
| 55 | BUG(); /* the stop task should never yield, its pointless. */ |
| 56 | } |
| 57 | |
| 58 | static void put_prev_task_stop(struct rq *rq, struct task_struct *prev) |
| 59 | { |
Mike Galbraith | 8f61896 | 2012-08-04 05:44:14 +0200 | [diff] [blame] | 60 | struct task_struct *curr = rq->curr; |
| 61 | u64 delta_exec; |
| 62 | |
Frederic Weisbecker | 78becc2 | 2013-04-12 01:51:02 +0200 | [diff] [blame] | 63 | delta_exec = rq_clock_task(rq) - curr->se.exec_start; |
Mike Galbraith | 8f61896 | 2012-08-04 05:44:14 +0200 | [diff] [blame] | 64 | if (unlikely((s64)delta_exec < 0)) |
| 65 | delta_exec = 0; |
| 66 | |
| 67 | schedstat_set(curr->se.statistics.exec_max, |
| 68 | max(curr->se.statistics.exec_max, delta_exec)); |
| 69 | |
| 70 | curr->se.sum_exec_runtime += delta_exec; |
| 71 | account_group_exec_runtime(curr, delta_exec); |
| 72 | |
Frederic Weisbecker | 78becc2 | 2013-04-12 01:51:02 +0200 | [diff] [blame] | 73 | curr->se.exec_start = rq_clock_task(rq); |
Mike Galbraith | 8f61896 | 2012-08-04 05:44:14 +0200 | [diff] [blame] | 74 | cpuacct_charge(curr, delta_exec); |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | static void task_tick_stop(struct rq *rq, struct task_struct *curr, int queued) |
| 78 | { |
| 79 | } |
| 80 | |
| 81 | static void set_curr_task_stop(struct rq *rq) |
| 82 | { |
Mike Galbraith | 8f61896 | 2012-08-04 05:44:14 +0200 | [diff] [blame] | 83 | struct task_struct *stop = rq->stop; |
| 84 | |
Frederic Weisbecker | 78becc2 | 2013-04-12 01:51:02 +0200 | [diff] [blame] | 85 | stop->se.exec_start = rq_clock_task(rq); |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 86 | } |
| 87 | |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 88 | static void switched_to_stop(struct rq *rq, struct task_struct *p) |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 89 | { |
| 90 | BUG(); /* its impossible to change to this class */ |
| 91 | } |
| 92 | |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 93 | static void |
| 94 | prio_changed_stop(struct rq *rq, struct task_struct *p, int oldprio) |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 95 | { |
| 96 | BUG(); /* how!?, what priority? */ |
| 97 | } |
| 98 | |
| 99 | static unsigned int |
| 100 | get_rr_interval_stop(struct rq *rq, struct task_struct *task) |
| 101 | { |
| 102 | return 0; |
| 103 | } |
| 104 | |
Thomas Gleixner | 90e362f | 2014-11-23 23:04:52 +0100 | [diff] [blame] | 105 | static void update_curr_stop(struct rq *rq) |
| 106 | { |
| 107 | } |
| 108 | |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 109 | /* |
| 110 | * Simple, special scheduling class for the per-CPU stop tasks: |
| 111 | */ |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 112 | const struct sched_class stop_sched_class = { |
Dario Faggioli | aab03e0 | 2013-11-28 11:14:43 +0100 | [diff] [blame] | 113 | .next = &dl_sched_class, |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 114 | |
| 115 | .enqueue_task = enqueue_task_stop, |
| 116 | .dequeue_task = dequeue_task_stop, |
| 117 | .yield_task = yield_task_stop, |
| 118 | |
| 119 | .check_preempt_curr = check_preempt_curr_stop, |
| 120 | |
| 121 | .pick_next_task = pick_next_task_stop, |
| 122 | .put_prev_task = put_prev_task_stop, |
| 123 | |
| 124 | #ifdef CONFIG_SMP |
| 125 | .select_task_rq = select_task_rq_stop, |
| 126 | #endif |
| 127 | |
| 128 | .set_curr_task = set_curr_task_stop, |
| 129 | .task_tick = task_tick_stop, |
| 130 | |
| 131 | .get_rr_interval = get_rr_interval_stop, |
| 132 | |
| 133 | .prio_changed = prio_changed_stop, |
| 134 | .switched_to = switched_to_stop, |
Thomas Gleixner | 90e362f | 2014-11-23 23:04:52 +0100 | [diff] [blame] | 135 | .update_curr = update_curr_stop, |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 136 | }; |