blob: 3a3c826dd83a77dd0439b4705d7bbca965eb5a37 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ingo Molnar425e0962007-07-09 18:51:58 +02002
3#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyanb5aadf72008-10-06 13:23:43 +04004
Yafang Shao60f24152021-09-05 14:35:42 +00005extern struct static_key_false sched_schedstats;
6
Ingo Molnar425e0962007-07-09 18:51:58 +02007/*
8 * Expects runqueue lock to be held for atomicity of update
9 */
10static inline void
11rq_sched_info_arrive(struct rq *rq, unsigned long long delta)
12{
13 if (rq) {
14 rq->rq_sched_info.run_delay += delta;
Ingo Molnar2d723762007-10-15 17:00:12 +020015 rq->rq_sched_info.pcount++;
Ingo Molnar425e0962007-07-09 18:51:58 +020016 }
17}
18
19/*
20 * Expects runqueue lock to be held for atomicity of update
21 */
22static inline void
23rq_sched_info_depart(struct rq *rq, unsigned long long delta)
24{
25 if (rq)
Ken Chen9c2c4802008-12-16 23:41:22 -080026 rq->rq_cpu_time += delta;
Ingo Molnar425e0962007-07-09 18:51:58 +020027}
Ankita Garg46ac22b2008-07-01 14:30:06 +053028
29static inline void
Peter Zijlstra4e29fb72021-05-04 22:43:45 +020030rq_sched_info_dequeue(struct rq *rq, unsigned long long delta)
Ankita Garg46ac22b2008-07-01 14:30:06 +053031{
32 if (rq)
33 rq->rq_sched_info.run_delay += delta;
34}
Ingo Molnar97fb7a02018-03-03 14:01:12 +010035#define schedstat_enabled() static_branch_unlikely(&sched_schedstats)
Peter Zijlstrab85c8b72018-01-16 20:51:06 +010036#define __schedstat_inc(var) do { var++; } while (0)
Ingo Molnar97fb7a02018-03-03 14:01:12 +010037#define schedstat_inc(var) do { if (schedstat_enabled()) { var++; } } while (0)
Peter Zijlstra2ed41a52018-01-23 20:34:30 +010038#define __schedstat_add(var, amt) do { var += (amt); } while (0)
Ingo Molnar97fb7a02018-03-03 14:01:12 +010039#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 Poimboeuf9c572592016-06-03 17:58:40 -050044
Yafang Shao60f24152021-09-05 14:35:42 +000045void __update_stats_wait_start(struct rq *rq, struct task_struct *p,
46 struct sched_statistics *stats);
47
48void __update_stats_wait_end(struct rq *rq, struct task_struct *p,
49 struct sched_statistics *stats);
50void __update_stats_enqueue_sleeper(struct rq *rq, struct task_struct *p,
51 struct sched_statistics *stats);
52
53static inline void
54check_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 Molnar97fb7a02018-03-03 14:01:12 +010068#else /* !CONFIG_SCHEDSTATS: */
Yafang Shaoceeadb82021-09-05 14:35:41 +000069
Ingo Molnar97fb7a02018-03-03 14:01:12 +010070static inline void rq_sched_info_arrive (struct rq *rq, unsigned long long delta) { }
Peter Zijlstra4e29fb72021-05-04 22:43:45 +020071static inline void rq_sched_info_dequeue(struct rq *rq, unsigned long long delta) { }
Ingo Molnar97fb7a02018-03-03 14:01:12 +010072static 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 Shaoceeadb82021-09-05 14:35:41 +000082
Yafang Shao60f24152021-09-05 14:35:42 +000083# 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 Poimboeufae928822016-06-17 12:43:24 -050088#endif /* CONFIG_SCHEDSTATS */
Ingo Molnar425e0962007-07-09 18:51:58 +020089
Yafang Shaoceeadb82021-09-05 14:35:41 +000090#ifdef CONFIG_FAIR_GROUP_SCHED
91struct sched_entity_stats {
92 struct sched_entity se;
93 struct sched_statistics stats;
94} __no_randomize_layout;
95#endif
96
97static 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 Weinereb414682018-10-26 15:06:27 -0700107#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 */
114static inline void psi_enqueue(struct task_struct *p, bool wakeup)
115{
116 int clear = 0, set = TSK_RUNNING;
117
Johannes Weinere0c27442018-11-30 14:09:58 -0800118 if (static_branch_likely(&psi_disabled))
Johannes Weinereb414682018-10-26 15:06:27 -0700119 return;
120
Brian Chencb0e52b2021-11-10 21:33:12 +0000121 if (p->in_memstall)
122 set |= TSK_MEMSTALL_RUNNING;
123
Johannes Weinereb414682018-10-26 15:06:27 -0700124 if (!wakeup || p->sched_psi_wake_requeue) {
Yafang Shao1066d1b2020-03-16 21:28:05 -0400125 if (p->in_memstall)
Johannes Weinereb414682018-10-26 15:06:27 -0700126 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
137static inline void psi_dequeue(struct task_struct *p, bool sleep)
138{
Chengming Zhou4117ceb2021-03-03 11:46:59 +0800139 int clear = TSK_RUNNING;
Johannes Weinereb414682018-10-26 15:06:27 -0700140
Johannes Weinere0c27442018-11-30 14:09:58 -0800141 if (static_branch_likely(&psi_disabled))
Johannes Weinereb414682018-10-26 15:06:27 -0700142 return;
143
Chengming Zhou4117ceb2021-03-03 11:46:59 +0800144 /*
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 Weinerb05e75d2020-03-16 15:13:31 -0400152
Chengming Zhou4117ceb2021-03-03 11:46:59 +0800153 if (p->in_memstall)
Brian Chencb0e52b2021-11-10 21:33:12 +0000154 clear |= (TSK_MEMSTALL | TSK_MEMSTALL_RUNNING);
Johannes Weinereb414682018-10-26 15:06:27 -0700155
Chengming Zhou4117ceb2021-03-03 11:46:59 +0800156 psi_task_change(p, clear, 0);
Johannes Weinereb414682018-10-26 15:06:27 -0700157}
158
159static inline void psi_ttwu_dequeue(struct task_struct *p)
160{
Johannes Weinere0c27442018-11-30 14:09:58 -0800161 if (static_branch_likely(&psi_disabled))
Johannes Weinereb414682018-10-26 15:06:27 -0700162 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 Shao1066d1b2020-03-16 21:28:05 -0400168 if (unlikely(p->in_iowait || p->in_memstall)) {
Johannes Weinereb414682018-10-26 15:06:27 -0700169 struct rq_flags rf;
170 struct rq *rq;
171 int clear = 0;
172
173 if (p->in_iowait)
174 clear |= TSK_IOWAIT;
Yafang Shao1066d1b2020-03-16 21:28:05 -0400175 if (p->in_memstall)
Johannes Weinereb414682018-10-26 15:06:27 -0700176 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 Weinerb05e75d2020-03-16 15:13:31 -0400185static 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 Weiner36b238d2020-03-16 15:13:32 -0400192 psi_task_switch(prev, next, sleep);
Johannes Weinerb05e75d2020-03-16 15:13:31 -0400193}
194
Johannes Weinereb414682018-10-26 15:06:27 -0700195#else /* CONFIG_PSI */
196static inline void psi_enqueue(struct task_struct *p, bool wakeup) {}
197static inline void psi_dequeue(struct task_struct *p, bool sleep) {}
198static inline void psi_ttwu_dequeue(struct task_struct *p) {}
Johannes Weinerb05e75d2020-03-16 15:13:31 -0400199static inline void psi_sched_switch(struct task_struct *prev,
200 struct task_struct *next,
201 bool sleep) {}
Johannes Weinereb414682018-10-26 15:06:27 -0700202#endif /* CONFIG_PSI */
203
Naveen N. Raof6db8342015-06-25 23:53:37 +0530204#ifdef CONFIG_SCHED_INFO
Ingo Molnar425e0962007-07-09 18:51:58 +0200205/*
Rakib Mullickd4a6f3c2010-10-24 16:28:47 +0600206 * We are interested in knowing how long it was from the *first* time a
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100207 * 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 Molnar425e0962007-07-09 18:51:58 +0200210 */
Peter Zijlstra4e29fb72021-05-04 22:43:45 +0200211static inline void sched_info_dequeue(struct rq *rq, struct task_struct *t)
Ingo Molnar425e0962007-07-09 18:51:58 +0200212{
Peter Zijlstrac5895d32021-05-04 22:43:42 +0200213 unsigned long long delta = 0;
Ankita Garg46ac22b2008-07-01 14:30:06 +0530214
Peter Zijlstra90a0ff42021-05-12 13:32:37 +0200215 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 Garg46ac22b2008-07-01 14:30:06 +0530220 t->sched_info.run_delay += delta;
221
Peter Zijlstra4e29fb72021-05-04 22:43:45 +0200222 rq_sched_info_dequeue(rq, delta);
Ingo Molnar425e0962007-07-09 18:51:58 +0200223}
224
225/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100226 * Called when a task finally hits the CPU. We can now calculate how
Ingo Molnar425e0962007-07-09 18:51:58 +0200227 * 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. Tsirkin43148952013-09-22 17:20:54 +0300230static void sched_info_arrive(struct rq *rq, struct task_struct *t)
Ingo Molnar425e0962007-07-09 18:51:58 +0200231{
Peter Zijlstra90a0ff42021-05-12 13:32:37 +0200232 unsigned long long now, delta = 0;
Ingo Molnar425e0962007-07-09 18:51:58 +0200233
Peter Zijlstra90a0ff42021-05-12 13:32:37 +0200234 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 Molnar425e0962007-07-09 18:51:58 +0200240 t->sched_info.run_delay += delta;
241 t->sched_info.last_arrival = now;
Ingo Molnar2d723762007-10-15 17:00:12 +0200242 t->sched_info.pcount++;
Ingo Molnar425e0962007-07-09 18:51:58 +0200243
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300244 rq_sched_info_arrive(rq, delta);
Ingo Molnar425e0962007-07-09 18:51:58 +0200245}
246
247/*
Ingo Molnar425e0962007-07-09 18:51:58 +0200248 * 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 Zijlstra4e29fb72021-05-04 22:43:45 +0200250 * sched_info_dequeue() will clear that stamp when appropriate.
Ingo Molnar425e0962007-07-09 18:51:58 +0200251 */
Peter Zijlstra4e29fb72021-05-04 22:43:45 +0200252static inline void sched_info_enqueue(struct rq *rq, struct task_struct *t)
Ingo Molnar425e0962007-07-09 18:51:58 +0200253{
Peter Zijlstrac5895d32021-05-04 22:43:42 +0200254 if (!t->sched_info.last_queued)
255 t->sched_info.last_queued = rq_clock(rq);
Ingo Molnar425e0962007-07-09 18:51:58 +0200256}
257
258/*
Michael S. Tsirkin13b62e42013-09-16 11:30:36 +0300259 * 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 Ravid4abc232008-06-16 15:11:01 +0530262 * Also, if the process is still in the TASK_RUNNING state, call
Peter Zijlstra4e29fb72021-05-04 22:43:45 +0200263 * sched_info_enqueue() to mark that it has now again started waiting on
Bharath Ravid4abc232008-06-16 15:11:01 +0530264 * the runqueue.
Ingo Molnar425e0962007-07-09 18:51:58 +0200265 */
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300266static inline void sched_info_depart(struct rq *rq, struct task_struct *t)
Ingo Molnar425e0962007-07-09 18:51:58 +0200267{
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100268 unsigned long long delta = rq_clock(rq) - t->sched_info.last_arrival;
Ingo Molnar425e0962007-07-09 18:51:58 +0200269
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300270 rq_sched_info_depart(rq, delta);
Bharath Ravid4abc232008-06-16 15:11:01 +0530271
Peter Zijlstrab03fbd42021-06-11 10:28:12 +0200272 if (task_is_running(t))
Peter Zijlstra4e29fb72021-05-04 22:43:45 +0200273 sched_info_enqueue(rq, t);
Ingo Molnar425e0962007-07-09 18:51:58 +0200274}
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 */
281static inline void
Peter Zijlstrac5895d32021-05-04 22:43:42 +0200282sched_info_switch(struct rq *rq, struct task_struct *prev, struct task_struct *next)
Ingo Molnar425e0962007-07-09 18:51:58 +0200283{
Ingo Molnar425e0962007-07-09 18:51:58 +0200284 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100285 * prev now departs the CPU. It's not interesting to record
Ingo Molnar425e0962007-07-09 18:51:58 +0200286 * stats about how efficient we were at scheduling the idle
287 * process, however.
288 */
289 if (prev != rq->idle)
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300290 sched_info_depart(rq, prev);
Ingo Molnar425e0962007-07-09 18:51:58 +0200291
292 if (next != rq->idle)
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300293 sched_info_arrive(rq, next);
Ingo Molnar425e0962007-07-09 18:51:58 +0200294}
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100295
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100296#else /* !CONFIG_SCHED_INFO: */
Peter Zijlstra4e29fb72021-05-04 22:43:45 +0200297# define sched_info_enqueue(rq, t) do { } while (0)
Peter Zijlstra4e29fb72021-05-04 22:43:45 +0200298# define sched_info_dequeue(rq, t) do { } while (0)
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100299# define sched_info_switch(rq, t, next) do { } while (0)
Naveen N. Raof6db8342015-06-25 23:53:37 +0530300#endif /* CONFIG_SCHED_INFO */