Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2 | |
| 3 | #ifdef CONFIG_SCHEDSTATS |
Alexey Dobriyan | b5aadf7 | 2008-10-06 13:23:43 +0400 | [diff] [blame] | 4 | |
Yafang Shao | 60f2415 | 2021-09-05 14:35:42 +0000 | [diff] [blame] | 5 | extern struct static_key_false sched_schedstats; |
| 6 | |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 7 | /* |
| 8 | * Expects runqueue lock to be held for atomicity of update |
| 9 | */ |
| 10 | static inline void |
| 11 | rq_sched_info_arrive(struct rq *rq, unsigned long long delta) |
| 12 | { |
| 13 | if (rq) { |
| 14 | rq->rq_sched_info.run_delay += delta; |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 15 | rq->rq_sched_info.pcount++; |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 16 | } |
| 17 | } |
| 18 | |
| 19 | /* |
| 20 | * Expects runqueue lock to be held for atomicity of update |
| 21 | */ |
| 22 | static inline void |
| 23 | rq_sched_info_depart(struct rq *rq, unsigned long long delta) |
| 24 | { |
| 25 | if (rq) |
Ken Chen | 9c2c480 | 2008-12-16 23:41:22 -0800 | [diff] [blame] | 26 | rq->rq_cpu_time += delta; |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 27 | } |
Ankita Garg | 46ac22b | 2008-07-01 14:30:06 +0530 | [diff] [blame] | 28 | |
| 29 | static inline void |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 30 | rq_sched_info_dequeue(struct rq *rq, unsigned long long delta) |
Ankita Garg | 46ac22b | 2008-07-01 14:30:06 +0530 | [diff] [blame] | 31 | { |
| 32 | if (rq) |
| 33 | rq->rq_sched_info.run_delay += delta; |
| 34 | } |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 35 | #define schedstat_enabled() static_branch_unlikely(&sched_schedstats) |
Peter Zijlstra | b85c8b7 | 2018-01-16 20:51:06 +0100 | [diff] [blame] | 36 | #define __schedstat_inc(var) do { var++; } while (0) |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 37 | #define schedstat_inc(var) do { if (schedstat_enabled()) { var++; } } while (0) |
Peter Zijlstra | 2ed41a5 | 2018-01-23 20:34:30 +0100 | [diff] [blame] | 38 | #define __schedstat_add(var, amt) do { var += (amt); } while (0) |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 39 | #define schedstat_add(var, amt) do { if (schedstat_enabled()) { var += (amt); } } while (0) |
| 40 | #define __schedstat_set(var, val) do { var = (val); } while (0) |
| 41 | #define schedstat_set(var, val) do { if (schedstat_enabled()) { var = (val); } } while (0) |
| 42 | #define schedstat_val(var) (var) |
| 43 | #define schedstat_val_or_zero(var) ((schedstat_enabled()) ? (var) : 0) |
Josh Poimboeuf | 9c57259 | 2016-06-03 17:58:40 -0500 | [diff] [blame] | 44 | |
Yafang Shao | 60f2415 | 2021-09-05 14:35:42 +0000 | [diff] [blame] | 45 | void __update_stats_wait_start(struct rq *rq, struct task_struct *p, |
| 46 | struct sched_statistics *stats); |
| 47 | |
| 48 | void __update_stats_wait_end(struct rq *rq, struct task_struct *p, |
| 49 | struct sched_statistics *stats); |
| 50 | void __update_stats_enqueue_sleeper(struct rq *rq, struct task_struct *p, |
| 51 | struct sched_statistics *stats); |
| 52 | |
| 53 | static inline void |
| 54 | check_schedstat_required(void) |
| 55 | { |
| 56 | if (schedstat_enabled()) |
| 57 | return; |
| 58 | |
| 59 | /* Force schedstat enabled if a dependent tracepoint is active */ |
| 60 | if (trace_sched_stat_wait_enabled() || |
| 61 | trace_sched_stat_sleep_enabled() || |
| 62 | trace_sched_stat_iowait_enabled() || |
| 63 | trace_sched_stat_blocked_enabled() || |
| 64 | trace_sched_stat_runtime_enabled()) |
| 65 | printk_deferred_once("Scheduler tracepoints stat_sleep, stat_iowait, stat_blocked and stat_runtime require the kernel parameter schedstats=enable or kernel.sched_schedstats=1\n"); |
| 66 | } |
| 67 | |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 68 | #else /* !CONFIG_SCHEDSTATS: */ |
Yafang Shao | ceeadb8 | 2021-09-05 14:35:41 +0000 | [diff] [blame] | 69 | |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 70 | static inline void rq_sched_info_arrive (struct rq *rq, unsigned long long delta) { } |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 71 | static inline void rq_sched_info_dequeue(struct rq *rq, unsigned long long delta) { } |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 72 | static inline void rq_sched_info_depart (struct rq *rq, unsigned long long delta) { } |
| 73 | # define schedstat_enabled() 0 |
| 74 | # define __schedstat_inc(var) do { } while (0) |
| 75 | # define schedstat_inc(var) do { } while (0) |
| 76 | # define __schedstat_add(var, amt) do { } while (0) |
| 77 | # define schedstat_add(var, amt) do { } while (0) |
| 78 | # define __schedstat_set(var, val) do { } while (0) |
| 79 | # define schedstat_set(var, val) do { } while (0) |
| 80 | # define schedstat_val(var) 0 |
| 81 | # define schedstat_val_or_zero(var) 0 |
Yafang Shao | ceeadb8 | 2021-09-05 14:35:41 +0000 | [diff] [blame] | 82 | |
Yafang Shao | 60f2415 | 2021-09-05 14:35:42 +0000 | [diff] [blame] | 83 | # define __update_stats_wait_start(rq, p, stats) do { } while (0) |
| 84 | # define __update_stats_wait_end(rq, p, stats) do { } while (0) |
| 85 | # define __update_stats_enqueue_sleeper(rq, p, stats) do { } while (0) |
| 86 | # define check_schedstat_required() do { } while (0) |
| 87 | |
Josh Poimboeuf | ae92882 | 2016-06-17 12:43:24 -0500 | [diff] [blame] | 88 | #endif /* CONFIG_SCHEDSTATS */ |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 89 | |
Yafang Shao | ceeadb8 | 2021-09-05 14:35:41 +0000 | [diff] [blame] | 90 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 91 | struct sched_entity_stats { |
| 92 | struct sched_entity se; |
| 93 | struct sched_statistics stats; |
| 94 | } __no_randomize_layout; |
| 95 | #endif |
| 96 | |
| 97 | static inline struct sched_statistics * |
| 98 | __schedstats_from_se(struct sched_entity *se) |
| 99 | { |
| 100 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 101 | if (!entity_is_task(se)) |
| 102 | return &container_of(se, struct sched_entity_stats, se)->stats; |
| 103 | #endif |
| 104 | return &task_of(se)->stats; |
| 105 | } |
| 106 | |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 107 | #ifdef CONFIG_PSI |
| 108 | /* |
| 109 | * PSI tracks state that persists across sleeps, such as iowaits and |
| 110 | * memory stalls. As a result, it has to distinguish between sleeps, |
| 111 | * where a task's runnable state changes, and requeues, where a task |
| 112 | * and its state are being moved between CPUs and runqueues. |
| 113 | */ |
| 114 | static inline void psi_enqueue(struct task_struct *p, bool wakeup) |
| 115 | { |
| 116 | int clear = 0, set = TSK_RUNNING; |
| 117 | |
Johannes Weiner | e0c2744 | 2018-11-30 14:09:58 -0800 | [diff] [blame] | 118 | if (static_branch_likely(&psi_disabled)) |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 119 | return; |
| 120 | |
Brian Chen | cb0e52b | 2021-11-10 21:33:12 +0000 | [diff] [blame] | 121 | if (p->in_memstall) |
| 122 | set |= TSK_MEMSTALL_RUNNING; |
| 123 | |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 124 | if (!wakeup || p->sched_psi_wake_requeue) { |
Yafang Shao | 1066d1b | 2020-03-16 21:28:05 -0400 | [diff] [blame] | 125 | if (p->in_memstall) |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 126 | set |= TSK_MEMSTALL; |
| 127 | if (p->sched_psi_wake_requeue) |
| 128 | p->sched_psi_wake_requeue = 0; |
| 129 | } else { |
| 130 | if (p->in_iowait) |
| 131 | clear |= TSK_IOWAIT; |
| 132 | } |
| 133 | |
| 134 | psi_task_change(p, clear, set); |
| 135 | } |
| 136 | |
| 137 | static inline void psi_dequeue(struct task_struct *p, bool sleep) |
| 138 | { |
Chengming Zhou | 4117ceb | 2021-03-03 11:46:59 +0800 | [diff] [blame] | 139 | int clear = TSK_RUNNING; |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 140 | |
Johannes Weiner | e0c2744 | 2018-11-30 14:09:58 -0800 | [diff] [blame] | 141 | if (static_branch_likely(&psi_disabled)) |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 142 | return; |
| 143 | |
Chengming Zhou | 4117ceb | 2021-03-03 11:46:59 +0800 | [diff] [blame] | 144 | /* |
| 145 | * A voluntary sleep is a dequeue followed by a task switch. To |
| 146 | * avoid walking all ancestors twice, psi_task_switch() handles |
| 147 | * TSK_RUNNING and TSK_IOWAIT for us when it moves TSK_ONCPU. |
| 148 | * Do nothing here. |
| 149 | */ |
| 150 | if (sleep) |
| 151 | return; |
Johannes Weiner | b05e75d | 2020-03-16 15:13:31 -0400 | [diff] [blame] | 152 | |
Chengming Zhou | 4117ceb | 2021-03-03 11:46:59 +0800 | [diff] [blame] | 153 | if (p->in_memstall) |
Brian Chen | cb0e52b | 2021-11-10 21:33:12 +0000 | [diff] [blame] | 154 | clear |= (TSK_MEMSTALL | TSK_MEMSTALL_RUNNING); |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 155 | |
Chengming Zhou | 4117ceb | 2021-03-03 11:46:59 +0800 | [diff] [blame] | 156 | psi_task_change(p, clear, 0); |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | static inline void psi_ttwu_dequeue(struct task_struct *p) |
| 160 | { |
Johannes Weiner | e0c2744 | 2018-11-30 14:09:58 -0800 | [diff] [blame] | 161 | if (static_branch_likely(&psi_disabled)) |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 162 | return; |
| 163 | /* |
| 164 | * Is the task being migrated during a wakeup? Make sure to |
| 165 | * deregister its sleep-persistent psi states from the old |
| 166 | * queue, and let psi_enqueue() know it has to requeue. |
| 167 | */ |
Yafang Shao | 1066d1b | 2020-03-16 21:28:05 -0400 | [diff] [blame] | 168 | if (unlikely(p->in_iowait || p->in_memstall)) { |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 169 | struct rq_flags rf; |
| 170 | struct rq *rq; |
| 171 | int clear = 0; |
| 172 | |
| 173 | if (p->in_iowait) |
| 174 | clear |= TSK_IOWAIT; |
Yafang Shao | 1066d1b | 2020-03-16 21:28:05 -0400 | [diff] [blame] | 175 | if (p->in_memstall) |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 176 | clear |= TSK_MEMSTALL; |
| 177 | |
| 178 | rq = __task_rq_lock(p, &rf); |
| 179 | psi_task_change(p, clear, 0); |
| 180 | p->sched_psi_wake_requeue = 1; |
| 181 | __task_rq_unlock(rq, &rf); |
| 182 | } |
| 183 | } |
| 184 | |
Johannes Weiner | b05e75d | 2020-03-16 15:13:31 -0400 | [diff] [blame] | 185 | static inline void psi_sched_switch(struct task_struct *prev, |
| 186 | struct task_struct *next, |
| 187 | bool sleep) |
| 188 | { |
| 189 | if (static_branch_likely(&psi_disabled)) |
| 190 | return; |
| 191 | |
Johannes Weiner | 36b238d | 2020-03-16 15:13:32 -0400 | [diff] [blame] | 192 | psi_task_switch(prev, next, sleep); |
Johannes Weiner | b05e75d | 2020-03-16 15:13:31 -0400 | [diff] [blame] | 193 | } |
| 194 | |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 195 | #else /* CONFIG_PSI */ |
| 196 | static inline void psi_enqueue(struct task_struct *p, bool wakeup) {} |
| 197 | static inline void psi_dequeue(struct task_struct *p, bool sleep) {} |
| 198 | static inline void psi_ttwu_dequeue(struct task_struct *p) {} |
Johannes Weiner | b05e75d | 2020-03-16 15:13:31 -0400 | [diff] [blame] | 199 | static inline void psi_sched_switch(struct task_struct *prev, |
| 200 | struct task_struct *next, |
| 201 | bool sleep) {} |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 202 | #endif /* CONFIG_PSI */ |
| 203 | |
Naveen N. Rao | f6db834 | 2015-06-25 23:53:37 +0530 | [diff] [blame] | 204 | #ifdef CONFIG_SCHED_INFO |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 205 | /* |
Rakib Mullick | d4a6f3c | 2010-10-24 16:28:47 +0600 | [diff] [blame] | 206 | * We are interested in knowing how long it was from the *first* time a |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 207 | * task was queued to the time that it finally hit a CPU, we call this routine |
| 208 | * from dequeue_task() to account for possible rq->clock skew across CPUs. The |
| 209 | * delta taken on each CPU would annul the skew. |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 210 | */ |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 211 | static inline void sched_info_dequeue(struct rq *rq, struct task_struct *t) |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 212 | { |
Peter Zijlstra | c5895d3 | 2021-05-04 22:43:42 +0200 | [diff] [blame] | 213 | unsigned long long delta = 0; |
Ankita Garg | 46ac22b | 2008-07-01 14:30:06 +0530 | [diff] [blame] | 214 | |
Peter Zijlstra | 90a0ff4 | 2021-05-12 13:32:37 +0200 | [diff] [blame] | 215 | if (!t->sched_info.last_queued) |
| 216 | return; |
| 217 | |
| 218 | delta = rq_clock(rq) - t->sched_info.last_queued; |
| 219 | t->sched_info.last_queued = 0; |
Ankita Garg | 46ac22b | 2008-07-01 14:30:06 +0530 | [diff] [blame] | 220 | t->sched_info.run_delay += delta; |
| 221 | |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 222 | rq_sched_info_dequeue(rq, delta); |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | /* |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 226 | * Called when a task finally hits the CPU. We can now calculate how |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 227 | * long it was waiting to run. We also note when it began so that we |
| 228 | * can keep stats on how long its timeslice is. |
| 229 | */ |
Michael S. Tsirkin | 4314895 | 2013-09-22 17:20:54 +0300 | [diff] [blame] | 230 | static void sched_info_arrive(struct rq *rq, struct task_struct *t) |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 231 | { |
Peter Zijlstra | 90a0ff4 | 2021-05-12 13:32:37 +0200 | [diff] [blame] | 232 | unsigned long long now, delta = 0; |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 233 | |
Peter Zijlstra | 90a0ff4 | 2021-05-12 13:32:37 +0200 | [diff] [blame] | 234 | if (!t->sched_info.last_queued) |
| 235 | return; |
| 236 | |
| 237 | now = rq_clock(rq); |
| 238 | delta = now - t->sched_info.last_queued; |
| 239 | t->sched_info.last_queued = 0; |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 240 | t->sched_info.run_delay += delta; |
| 241 | t->sched_info.last_arrival = now; |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 242 | t->sched_info.pcount++; |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 243 | |
Michael S. Tsirkin | 4314895 | 2013-09-22 17:20:54 +0300 | [diff] [blame] | 244 | rq_sched_info_arrive(rq, delta); |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | /* |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 248 | * This function is only called from enqueue_task(), but also only updates |
| 249 | * the timestamp if it is already not set. It's assumed that |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 250 | * sched_info_dequeue() will clear that stamp when appropriate. |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 251 | */ |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 252 | static inline void sched_info_enqueue(struct rq *rq, struct task_struct *t) |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 253 | { |
Peter Zijlstra | c5895d3 | 2021-05-04 22:43:42 +0200 | [diff] [blame] | 254 | if (!t->sched_info.last_queued) |
| 255 | t->sched_info.last_queued = rq_clock(rq); |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | /* |
Michael S. Tsirkin | 13b62e4 | 2013-09-16 11:30:36 +0300 | [diff] [blame] | 259 | * Called when a process ceases being the active-running process involuntarily |
| 260 | * due, typically, to expiring its time slice (this may also be called when |
| 261 | * switching to the idle task). Now we can calculate how long we ran. |
Bharath Ravi | d4abc23 | 2008-06-16 15:11:01 +0530 | [diff] [blame] | 262 | * Also, if the process is still in the TASK_RUNNING state, call |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 263 | * sched_info_enqueue() to mark that it has now again started waiting on |
Bharath Ravi | d4abc23 | 2008-06-16 15:11:01 +0530 | [diff] [blame] | 264 | * the runqueue. |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 265 | */ |
Michael S. Tsirkin | 4314895 | 2013-09-22 17:20:54 +0300 | [diff] [blame] | 266 | static inline void sched_info_depart(struct rq *rq, struct task_struct *t) |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 267 | { |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 268 | unsigned long long delta = rq_clock(rq) - t->sched_info.last_arrival; |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 269 | |
Michael S. Tsirkin | 4314895 | 2013-09-22 17:20:54 +0300 | [diff] [blame] | 270 | rq_sched_info_depart(rq, delta); |
Bharath Ravi | d4abc23 | 2008-06-16 15:11:01 +0530 | [diff] [blame] | 271 | |
Peter Zijlstra | b03fbd4 | 2021-06-11 10:28:12 +0200 | [diff] [blame] | 272 | if (task_is_running(t)) |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 273 | sched_info_enqueue(rq, t); |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | /* |
| 277 | * Called when tasks are switched involuntarily due, typically, to expiring |
| 278 | * their time slice. (This may also be called when switching to or from |
| 279 | * the idle task.) We are only called when prev != next. |
| 280 | */ |
| 281 | static inline void |
Peter Zijlstra | c5895d3 | 2021-05-04 22:43:42 +0200 | [diff] [blame] | 282 | sched_info_switch(struct rq *rq, struct task_struct *prev, struct task_struct *next) |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 283 | { |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 284 | /* |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 285 | * prev now departs the CPU. It's not interesting to record |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 286 | * stats about how efficient we were at scheduling the idle |
| 287 | * process, however. |
| 288 | */ |
| 289 | if (prev != rq->idle) |
Michael S. Tsirkin | 4314895 | 2013-09-22 17:20:54 +0300 | [diff] [blame] | 290 | sched_info_depart(rq, prev); |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 291 | |
| 292 | if (next != rq->idle) |
Michael S. Tsirkin | 4314895 | 2013-09-22 17:20:54 +0300 | [diff] [blame] | 293 | sched_info_arrive(rq, next); |
Ingo Molnar | 425e096 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 294 | } |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 295 | |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 296 | #else /* !CONFIG_SCHED_INFO: */ |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 297 | # define sched_info_enqueue(rq, t) do { } while (0) |
Peter Zijlstra | 4e29fb7 | 2021-05-04 22:43:45 +0200 | [diff] [blame] | 298 | # define sched_info_dequeue(rq, t) do { } while (0) |
Ingo Molnar | 97fb7a0 | 2018-03-03 14:01:12 +0100 | [diff] [blame] | 299 | # define sched_info_switch(rq, t, next) do { } while (0) |
Naveen N. Rao | f6db834 | 2015-06-25 23:53:37 +0530 | [diff] [blame] | 300 | #endif /* CONFIG_SCHED_INFO */ |