blob: 1652f2bb54b791720a7751fbd30a6074bd907b86 [file] [log] [blame]
Johannes Weinereb414682018-10-26 15:06:27 -07001/*
2 * Pressure stall information for CPU, memory and IO
3 *
4 * Copyright (c) 2018 Facebook, Inc.
5 * Author: Johannes Weiner <hannes@cmpxchg.org>
6 *
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07007 * Polling support by Suren Baghdasaryan <surenb@google.com>
8 * Copyright (c) 2018 Google, Inc.
9 *
Johannes Weinereb414682018-10-26 15:06:27 -070010 * When CPU, memory and IO are contended, tasks experience delays that
11 * reduce throughput and introduce latencies into the workload. Memory
12 * and IO contention, in addition, can cause a full loss of forward
13 * progress in which the CPU goes idle.
14 *
15 * This code aggregates individual task delays into resource pressure
16 * metrics that indicate problems with both workload health and
17 * resource utilization.
18 *
19 * Model
20 *
21 * The time in which a task can execute on a CPU is our baseline for
22 * productivity. Pressure expresses the amount of time in which this
23 * potential cannot be realized due to resource contention.
24 *
25 * This concept of productivity has two components: the workload and
26 * the CPU. To measure the impact of pressure on both, we define two
27 * contention states for a resource: SOME and FULL.
28 *
29 * In the SOME state of a given resource, one or more tasks are
30 * delayed on that resource. This affects the workload's ability to
31 * perform work, but the CPU may still be executing other tasks.
32 *
33 * In the FULL state of a given resource, all non-idle tasks are
34 * delayed on that resource such that nobody is advancing and the CPU
35 * goes idle. This leaves both workload and CPU unproductive.
36 *
Chengming Zhoue7fcd762021-03-03 11:46:56 +080037 * Naturally, the FULL state doesn't exist for the CPU resource at the
38 * system level, but exist at the cgroup level, means all non-idle tasks
39 * in a cgroup are delayed on the CPU resource which used by others outside
40 * of the cgroup or throttled by the cgroup cpu.max configuration.
Johannes Weinereb414682018-10-26 15:06:27 -070041 *
42 * SOME = nr_delayed_tasks != 0
43 * FULL = nr_delayed_tasks != 0 && nr_running_tasks == 0
44 *
45 * The percentage of wallclock time spent in those compound stall
46 * states gives pressure numbers between 0 and 100 for each resource,
47 * where the SOME percentage indicates workload slowdowns and the FULL
48 * percentage indicates reduced CPU utilization:
49 *
50 * %SOME = time(SOME) / period
51 * %FULL = time(FULL) / period
52 *
53 * Multiple CPUs
54 *
55 * The more tasks and available CPUs there are, the more work can be
56 * performed concurrently. This means that the potential that can go
57 * unrealized due to resource contention *also* scales with non-idle
58 * tasks and CPUs.
59 *
60 * Consider a scenario where 257 number crunching tasks are trying to
61 * run concurrently on 256 CPUs. If we simply aggregated the task
62 * states, we would have to conclude a CPU SOME pressure number of
63 * 100%, since *somebody* is waiting on a runqueue at all
64 * times. However, that is clearly not the amount of contention the
Ingo Molnar3b037062021-03-18 13:38:50 +010065 * workload is experiencing: only one out of 256 possible execution
Johannes Weinereb414682018-10-26 15:06:27 -070066 * threads will be contended at any given time, or about 0.4%.
67 *
68 * Conversely, consider a scenario of 4 tasks and 4 CPUs where at any
69 * given time *one* of the tasks is delayed due to a lack of memory.
70 * Again, looking purely at the task state would yield a memory FULL
71 * pressure number of 0%, since *somebody* is always making forward
72 * progress. But again this wouldn't capture the amount of execution
73 * potential lost, which is 1 out of 4 CPUs, or 25%.
74 *
75 * To calculate wasted potential (pressure) with multiple processors,
76 * we have to base our calculation on the number of non-idle tasks in
77 * conjunction with the number of available CPUs, which is the number
78 * of potential execution threads. SOME becomes then the proportion of
Ingo Molnar3b037062021-03-18 13:38:50 +010079 * delayed tasks to possible threads, and FULL is the share of possible
Johannes Weinereb414682018-10-26 15:06:27 -070080 * threads that are unproductive due to delays:
81 *
82 * threads = min(nr_nonidle_tasks, nr_cpus)
83 * SOME = min(nr_delayed_tasks / threads, 1)
84 * FULL = (threads - min(nr_running_tasks, threads)) / threads
85 *
86 * For the 257 number crunchers on 256 CPUs, this yields:
87 *
88 * threads = min(257, 256)
89 * SOME = min(1 / 256, 1) = 0.4%
90 * FULL = (256 - min(257, 256)) / 256 = 0%
91 *
92 * For the 1 out of 4 memory-delayed tasks, this yields:
93 *
94 * threads = min(4, 4)
95 * SOME = min(1 / 4, 1) = 25%
96 * FULL = (4 - min(3, 4)) / 4 = 25%
97 *
98 * [ Substitute nr_cpus with 1, and you can see that it's a natural
99 * extension of the single-CPU model. ]
100 *
101 * Implementation
102 *
103 * To assess the precise time spent in each such state, we would have
104 * to freeze the system on task changes and start/stop the state
105 * clocks accordingly. Obviously that doesn't scale in practice.
106 *
107 * Because the scheduler aims to distribute the compute load evenly
108 * among the available CPUs, we can track task state locally to each
109 * CPU and, at much lower frequency, extrapolate the global state for
110 * the cumulative stall times and the running averages.
111 *
112 * For each runqueue, we track:
113 *
114 * tSOME[cpu] = time(nr_delayed_tasks[cpu] != 0)
115 * tFULL[cpu] = time(nr_delayed_tasks[cpu] && !nr_running_tasks[cpu])
116 * tNONIDLE[cpu] = time(nr_nonidle_tasks[cpu] != 0)
117 *
118 * and then periodically aggregate:
119 *
120 * tNONIDLE = sum(tNONIDLE[i])
121 *
122 * tSOME = sum(tSOME[i] * tNONIDLE[i]) / tNONIDLE
123 * tFULL = sum(tFULL[i] * tNONIDLE[i]) / tNONIDLE
124 *
125 * %SOME = tSOME / period
126 * %FULL = tFULL / period
127 *
128 * This gives us an approximation of pressure that is practical
129 * cost-wise, yet way more sensitive and accurate than periodic
130 * sampling of the aggregate task states would be.
131 */
132
Johannes Weiner1b69ac62019-02-01 14:20:42 -0800133#include "../workqueue_internal.h"
Johannes Weinereb414682018-10-26 15:06:27 -0700134#include <linux/sched/loadavg.h>
135#include <linux/seq_file.h>
136#include <linux/proc_fs.h>
137#include <linux/seqlock.h>
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700138#include <linux/uaccess.h>
Johannes Weinereb414682018-10-26 15:06:27 -0700139#include <linux/cgroup.h>
140#include <linux/module.h>
141#include <linux/sched.h>
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700142#include <linux/ctype.h>
143#include <linux/file.h>
144#include <linux/poll.h>
Johannes Weinereb414682018-10-26 15:06:27 -0700145#include <linux/psi.h>
146#include "sched.h"
147
148static int psi_bug __read_mostly;
149
Johannes Weinere0c27442018-11-30 14:09:58 -0800150DEFINE_STATIC_KEY_FALSE(psi_disabled);
Suren Baghdasaryan3958e2d2021-05-24 12:53:39 -0700151DEFINE_STATIC_KEY_TRUE(psi_cgroups_enabled);
Johannes Weinere0c27442018-11-30 14:09:58 -0800152
153#ifdef CONFIG_PSI_DEFAULT_DISABLED
Suren Baghdasaryan9289c5e2019-05-14 15:40:59 -0700154static bool psi_enable;
Johannes Weinere0c27442018-11-30 14:09:58 -0800155#else
Suren Baghdasaryan9289c5e2019-05-14 15:40:59 -0700156static bool psi_enable = true;
Johannes Weinere0c27442018-11-30 14:09:58 -0800157#endif
158static int __init setup_psi(char *str)
159{
160 return kstrtobool(str, &psi_enable) == 0;
161}
162__setup("psi=", setup_psi);
Johannes Weinereb414682018-10-26 15:06:27 -0700163
164/* Running averages - we need to be higher-res than loadavg */
165#define PSI_FREQ (2*HZ+1) /* 2 sec intervals */
166#define EXP_10s 1677 /* 1/exp(2s/10s) as fixed-point */
167#define EXP_60s 1981 /* 1/exp(2s/60s) */
168#define EXP_300s 2034 /* 1/exp(2s/300s) */
169
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700170/* PSI trigger definitions */
171#define WINDOW_MIN_US 500000 /* Min window size is 500ms */
172#define WINDOW_MAX_US 10000000 /* Max window size is 10s */
173#define UPDATES_PER_WINDOW 10 /* 10 updates per window */
174
Johannes Weinereb414682018-10-26 15:06:27 -0700175/* Sampling frequency in nanoseconds */
176static u64 psi_period __read_mostly;
177
178/* System-level pressure and stall tracking */
179static DEFINE_PER_CPU(struct psi_group_cpu, system_group_pcpu);
Dan Schatzbergdf5ba5b2019-05-14 15:41:18 -0700180struct psi_group psi_system = {
Johannes Weinereb414682018-10-26 15:06:27 -0700181 .pcpu = &system_group_pcpu,
182};
183
Suren Baghdasaryanbcc78db2019-05-14 15:41:02 -0700184static void psi_avgs_work(struct work_struct *work);
Johannes Weinereb414682018-10-26 15:06:27 -0700185
Zhaoyang Huang8f91efd2021-06-11 08:29:34 +0800186static void poll_timer_fn(struct timer_list *t);
187
Johannes Weinereb414682018-10-26 15:06:27 -0700188static void group_init(struct psi_group *group)
189{
190 int cpu;
191
192 for_each_possible_cpu(cpu)
193 seqcount_init(&per_cpu_ptr(group->pcpu, cpu)->seq);
Johannes Weiner3dfbe252019-12-03 13:35:23 -0500194 group->avg_last_update = sched_clock();
195 group->avg_next_update = group->avg_last_update + psi_period;
Suren Baghdasaryanbcc78db2019-05-14 15:41:02 -0700196 INIT_DELAYED_WORK(&group->avgs_work, psi_avgs_work);
197 mutex_init(&group->avgs_lock);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700198 /* Init trigger-related members */
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700199 mutex_init(&group->trigger_lock);
200 INIT_LIST_HEAD(&group->triggers);
201 memset(group->nr_triggers, 0, sizeof(group->nr_triggers));
202 group->poll_states = 0;
203 group->poll_min_period = U32_MAX;
204 memset(group->polling_total, 0, sizeof(group->polling_total));
205 group->polling_next_update = ULLONG_MAX;
206 group->polling_until = 0;
Zhaoyang Huang8f91efd2021-06-11 08:29:34 +0800207 init_waitqueue_head(&group->poll_wait);
208 timer_setup(&group->poll_timer, poll_timer_fn, 0);
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700209 rcu_assign_pointer(group->poll_task, NULL);
Johannes Weinereb414682018-10-26 15:06:27 -0700210}
211
212void __init psi_init(void)
213{
Johannes Weinere0c27442018-11-30 14:09:58 -0800214 if (!psi_enable) {
215 static_branch_enable(&psi_disabled);
Johannes Weinereb414682018-10-26 15:06:27 -0700216 return;
Johannes Weinere0c27442018-11-30 14:09:58 -0800217 }
Johannes Weinereb414682018-10-26 15:06:27 -0700218
Suren Baghdasaryan3958e2d2021-05-24 12:53:39 -0700219 if (!cgroup_psi_enabled())
220 static_branch_disable(&psi_cgroups_enabled);
221
Johannes Weinereb414682018-10-26 15:06:27 -0700222 psi_period = jiffies_to_nsecs(PSI_FREQ);
223 group_init(&psi_system);
224}
225
226static bool test_state(unsigned int *tasks, enum psi_states state)
227{
228 switch (state) {
229 case PSI_IO_SOME:
Johannes Weinerfddc8ba2021-03-03 11:46:58 +0800230 return unlikely(tasks[NR_IOWAIT]);
Johannes Weinereb414682018-10-26 15:06:27 -0700231 case PSI_IO_FULL:
Johannes Weinerfddc8ba2021-03-03 11:46:58 +0800232 return unlikely(tasks[NR_IOWAIT] && !tasks[NR_RUNNING]);
Johannes Weinereb414682018-10-26 15:06:27 -0700233 case PSI_MEM_SOME:
Johannes Weinerfddc8ba2021-03-03 11:46:58 +0800234 return unlikely(tasks[NR_MEMSTALL]);
Johannes Weinereb414682018-10-26 15:06:27 -0700235 case PSI_MEM_FULL:
Johannes Weinerfddc8ba2021-03-03 11:46:58 +0800236 return unlikely(tasks[NR_MEMSTALL] && !tasks[NR_RUNNING]);
Johannes Weinereb414682018-10-26 15:06:27 -0700237 case PSI_CPU_SOME:
Johannes Weinerfddc8ba2021-03-03 11:46:58 +0800238 return unlikely(tasks[NR_RUNNING] > tasks[NR_ONCPU]);
Chengming Zhoue7fcd762021-03-03 11:46:56 +0800239 case PSI_CPU_FULL:
Johannes Weinerfddc8ba2021-03-03 11:46:58 +0800240 return unlikely(tasks[NR_RUNNING] && !tasks[NR_ONCPU]);
Johannes Weinereb414682018-10-26 15:06:27 -0700241 case PSI_NONIDLE:
242 return tasks[NR_IOWAIT] || tasks[NR_MEMSTALL] ||
243 tasks[NR_RUNNING];
244 default:
245 return false;
246 }
247}
248
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700249static void get_recent_times(struct psi_group *group, int cpu,
250 enum psi_aggregators aggregator, u32 *times,
Suren Baghdasaryan333f3017c2019-05-14 15:41:09 -0700251 u32 *pchanged_states)
Johannes Weinereb414682018-10-26 15:06:27 -0700252{
253 struct psi_group_cpu *groupc = per_cpu_ptr(group->pcpu, cpu);
Johannes Weinereb414682018-10-26 15:06:27 -0700254 u64 now, state_start;
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700255 enum psi_states s;
Johannes Weinereb414682018-10-26 15:06:27 -0700256 unsigned int seq;
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700257 u32 state_mask;
Johannes Weinereb414682018-10-26 15:06:27 -0700258
Suren Baghdasaryan333f3017c2019-05-14 15:41:09 -0700259 *pchanged_states = 0;
260
Johannes Weinereb414682018-10-26 15:06:27 -0700261 /* Snapshot a coherent view of the CPU state */
262 do {
263 seq = read_seqcount_begin(&groupc->seq);
264 now = cpu_clock(cpu);
265 memcpy(times, groupc->times, sizeof(groupc->times));
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700266 state_mask = groupc->state_mask;
Johannes Weinereb414682018-10-26 15:06:27 -0700267 state_start = groupc->state_start;
268 } while (read_seqcount_retry(&groupc->seq, seq));
269
270 /* Calculate state time deltas against the previous snapshot */
271 for (s = 0; s < NR_PSI_STATES; s++) {
272 u32 delta;
273 /*
274 * In addition to already concluded states, we also
275 * incorporate currently active states on the CPU,
276 * since states may last for many sampling periods.
277 *
278 * This way we keep our delta sampling buckets small
279 * (u32) and our reported pressure close to what's
280 * actually happening.
281 */
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700282 if (state_mask & (1 << s))
Johannes Weinereb414682018-10-26 15:06:27 -0700283 times[s] += now - state_start;
284
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700285 delta = times[s] - groupc->times_prev[aggregator][s];
286 groupc->times_prev[aggregator][s] = times[s];
Johannes Weinereb414682018-10-26 15:06:27 -0700287
288 times[s] = delta;
Suren Baghdasaryan333f3017c2019-05-14 15:41:09 -0700289 if (delta)
290 *pchanged_states |= (1 << s);
Johannes Weinereb414682018-10-26 15:06:27 -0700291 }
292}
293
294static void calc_avgs(unsigned long avg[3], int missed_periods,
295 u64 time, u64 period)
296{
297 unsigned long pct;
298
299 /* Fill in zeroes for periods of no activity */
300 if (missed_periods) {
301 avg[0] = calc_load_n(avg[0], EXP_10s, 0, missed_periods);
302 avg[1] = calc_load_n(avg[1], EXP_60s, 0, missed_periods);
303 avg[2] = calc_load_n(avg[2], EXP_300s, 0, missed_periods);
304 }
305
306 /* Sample the most recent active period */
307 pct = div_u64(time * 100, period);
308 pct *= FIXED_1;
309 avg[0] = calc_load(avg[0], EXP_10s, pct);
310 avg[1] = calc_load(avg[1], EXP_60s, pct);
311 avg[2] = calc_load(avg[2], EXP_300s, pct);
312}
313
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700314static void collect_percpu_times(struct psi_group *group,
315 enum psi_aggregators aggregator,
316 u32 *pchanged_states)
Johannes Weinereb414682018-10-26 15:06:27 -0700317{
318 u64 deltas[NR_PSI_STATES - 1] = { 0, };
Johannes Weinereb414682018-10-26 15:06:27 -0700319 unsigned long nonidle_total = 0;
Suren Baghdasaryan333f3017c2019-05-14 15:41:09 -0700320 u32 changed_states = 0;
Johannes Weinereb414682018-10-26 15:06:27 -0700321 int cpu;
322 int s;
323
Johannes Weinereb414682018-10-26 15:06:27 -0700324 /*
325 * Collect the per-cpu time buckets and average them into a
326 * single time sample that is normalized to wallclock time.
327 *
328 * For averaging, each CPU is weighted by its non-idle time in
329 * the sampling period. This eliminates artifacts from uneven
330 * loading, or even entirely idle CPUs.
331 */
332 for_each_possible_cpu(cpu) {
333 u32 times[NR_PSI_STATES];
334 u32 nonidle;
Suren Baghdasaryan333f3017c2019-05-14 15:41:09 -0700335 u32 cpu_changed_states;
Johannes Weinereb414682018-10-26 15:06:27 -0700336
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700337 get_recent_times(group, cpu, aggregator, times,
Suren Baghdasaryan333f3017c2019-05-14 15:41:09 -0700338 &cpu_changed_states);
339 changed_states |= cpu_changed_states;
Johannes Weinereb414682018-10-26 15:06:27 -0700340
341 nonidle = nsecs_to_jiffies(times[PSI_NONIDLE]);
342 nonidle_total += nonidle;
343
344 for (s = 0; s < PSI_NONIDLE; s++)
345 deltas[s] += (u64)times[s] * nonidle;
346 }
347
348 /*
349 * Integrate the sample into the running statistics that are
350 * reported to userspace: the cumulative stall times and the
351 * decaying averages.
352 *
353 * Pressure percentages are sampled at PSI_FREQ. We might be
354 * called more often when the user polls more frequently than
355 * that; we might be called less often when there is no task
356 * activity, thus no data, and clock ticks are sporadic. The
357 * below handles both.
358 */
359
360 /* total= */
361 for (s = 0; s < NR_PSI_STATES - 1; s++)
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700362 group->total[aggregator][s] +=
363 div_u64(deltas[s], max(nonidle_total, 1UL));
Johannes Weinereb414682018-10-26 15:06:27 -0700364
Suren Baghdasaryan333f3017c2019-05-14 15:41:09 -0700365 if (pchanged_states)
366 *pchanged_states = changed_states;
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -0700367}
368
369static u64 update_averages(struct psi_group *group, u64 now)
370{
371 unsigned long missed_periods = 0;
372 u64 expires, period;
373 u64 avg_next_update;
374 int s;
375
Johannes Weinereb414682018-10-26 15:06:27 -0700376 /* avgX= */
Suren Baghdasaryanbcc78db2019-05-14 15:41:02 -0700377 expires = group->avg_next_update;
Johannes Weiner4e375042019-02-20 22:19:59 -0800378 if (now - expires >= psi_period)
Johannes Weinereb414682018-10-26 15:06:27 -0700379 missed_periods = div_u64(now - expires, psi_period);
380
381 /*
382 * The periodic clock tick can get delayed for various
383 * reasons, especially on loaded systems. To avoid clock
384 * drift, we schedule the clock in fixed psi_period intervals.
385 * But the deltas we sample out of the per-cpu buckets above
386 * are based on the actual time elapsing between clock ticks.
387 */
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -0700388 avg_next_update = expires + ((1 + missed_periods) * psi_period);
Suren Baghdasaryanbcc78db2019-05-14 15:41:02 -0700389 period = now - (group->avg_last_update + (missed_periods * psi_period));
390 group->avg_last_update = now;
Johannes Weinereb414682018-10-26 15:06:27 -0700391
392 for (s = 0; s < NR_PSI_STATES - 1; s++) {
393 u32 sample;
394
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700395 sample = group->total[PSI_AVGS][s] - group->avg_total[s];
Johannes Weinereb414682018-10-26 15:06:27 -0700396 /*
397 * Due to the lockless sampling of the time buckets,
398 * recorded time deltas can slip into the next period,
399 * which under full pressure can result in samples in
400 * excess of the period length.
401 *
402 * We don't want to report non-sensical pressures in
403 * excess of 100%, nor do we want to drop such events
404 * on the floor. Instead we punt any overage into the
405 * future until pressure subsides. By doing this we
406 * don't underreport the occurring pressure curve, we
407 * just report it delayed by one period length.
408 *
409 * The error isn't cumulative. As soon as another
410 * delta slips from a period P to P+1, by definition
411 * it frees up its time T in P.
412 */
413 if (sample > period)
414 sample = period;
Suren Baghdasaryanbcc78db2019-05-14 15:41:02 -0700415 group->avg_total[s] += sample;
Johannes Weinereb414682018-10-26 15:06:27 -0700416 calc_avgs(group->avg[s], missed_periods, sample, period);
417 }
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -0700418
419 return avg_next_update;
Johannes Weinereb414682018-10-26 15:06:27 -0700420}
421
Suren Baghdasaryanbcc78db2019-05-14 15:41:02 -0700422static void psi_avgs_work(struct work_struct *work)
Johannes Weinereb414682018-10-26 15:06:27 -0700423{
424 struct delayed_work *dwork;
425 struct psi_group *group;
Suren Baghdasaryan333f3017c2019-05-14 15:41:09 -0700426 u32 changed_states;
Johannes Weinereb414682018-10-26 15:06:27 -0700427 bool nonidle;
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -0700428 u64 now;
Johannes Weinereb414682018-10-26 15:06:27 -0700429
430 dwork = to_delayed_work(work);
Suren Baghdasaryanbcc78db2019-05-14 15:41:02 -0700431 group = container_of(dwork, struct psi_group, avgs_work);
Johannes Weinereb414682018-10-26 15:06:27 -0700432
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -0700433 mutex_lock(&group->avgs_lock);
434
435 now = sched_clock();
436
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700437 collect_percpu_times(group, PSI_AVGS, &changed_states);
Suren Baghdasaryan333f3017c2019-05-14 15:41:09 -0700438 nonidle = changed_states & (1 << PSI_NONIDLE);
Johannes Weinereb414682018-10-26 15:06:27 -0700439 /*
440 * If there is task activity, periodically fold the per-cpu
441 * times and feed samples into the running averages. If things
442 * are idle and there is no data to process, stop the clock.
443 * Once restarted, we'll catch up the running averages in one
444 * go - see calc_avgs() and missed_periods.
445 */
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -0700446 if (now >= group->avg_next_update)
447 group->avg_next_update = update_averages(group, now);
Johannes Weinereb414682018-10-26 15:06:27 -0700448
449 if (nonidle) {
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -0700450 schedule_delayed_work(dwork, nsecs_to_jiffies(
451 group->avg_next_update - now) + 1);
Johannes Weinereb414682018-10-26 15:06:27 -0700452 }
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -0700453
454 mutex_unlock(&group->avgs_lock);
Johannes Weinereb414682018-10-26 15:06:27 -0700455}
456
Ingo Molnar3b037062021-03-18 13:38:50 +0100457/* Trigger tracking window manipulations */
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700458static void window_reset(struct psi_window *win, u64 now, u64 value,
459 u64 prev_growth)
460{
461 win->start_time = now;
462 win->start_value = value;
463 win->prev_growth = prev_growth;
464}
465
466/*
467 * PSI growth tracking window update and growth calculation routine.
468 *
469 * This approximates a sliding tracking window by interpolating
470 * partially elapsed windows using historical growth data from the
471 * previous intervals. This minimizes memory requirements (by not storing
472 * all the intermediate values in the previous window) and simplifies
473 * the calculations. It works well because PSI signal changes only in
474 * positive direction and over relatively small window sizes the growth
475 * is close to linear.
476 */
477static u64 window_update(struct psi_window *win, u64 now, u64 value)
478{
479 u64 elapsed;
480 u64 growth;
481
482 elapsed = now - win->start_time;
483 growth = value - win->start_value;
484 /*
485 * After each tracking window passes win->start_value and
486 * win->start_time get reset and win->prev_growth stores
487 * the average per-window growth of the previous window.
488 * win->prev_growth is then used to interpolate additional
489 * growth from the previous window assuming it was linear.
490 */
491 if (elapsed > win->size)
492 window_reset(win, now, value, growth);
493 else {
494 u32 remaining;
495
496 remaining = win->size - elapsed;
Johannes Weinerc3466952019-12-03 13:35:24 -0500497 growth += div64_u64(win->prev_growth * remaining, win->size);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700498 }
499
500 return growth;
501}
502
503static void init_triggers(struct psi_group *group, u64 now)
504{
505 struct psi_trigger *t;
506
507 list_for_each_entry(t, &group->triggers, node)
508 window_reset(&t->win, now,
509 group->total[PSI_POLL][t->state], 0);
510 memcpy(group->polling_total, group->total[PSI_POLL],
511 sizeof(group->polling_total));
512 group->polling_next_update = now + group->poll_min_period;
513}
514
515static u64 update_triggers(struct psi_group *group, u64 now)
516{
517 struct psi_trigger *t;
518 bool new_stall = false;
519 u64 *total = group->total[PSI_POLL];
520
521 /*
522 * On subsequent updates, calculate growth deltas and let
523 * watchers know when their specified thresholds are exceeded.
524 */
525 list_for_each_entry(t, &group->triggers, node) {
526 u64 growth;
527
528 /* Check for stall activity */
529 if (group->polling_total[t->state] == total[t->state])
530 continue;
531
532 /*
533 * Multiple triggers might be looking at the same state,
534 * remember to update group->polling_total[] once we've
535 * been through all of them. Also remember to extend the
536 * polling time if we see new stall activity.
537 */
538 new_stall = true;
539
540 /* Calculate growth since last update */
541 growth = window_update(&t->win, now, total[t->state]);
542 if (growth < t->threshold)
543 continue;
544
545 /* Limit event signaling to once per window */
546 if (now < t->last_event_time + t->win.size)
547 continue;
548
549 /* Generate an event */
550 if (cmpxchg(&t->event, 0, 1) == 0)
551 wake_up_interruptible(&t->event_wait);
552 t->last_event_time = now;
553 }
554
555 if (new_stall)
556 memcpy(group->polling_total, total,
557 sizeof(group->polling_total));
558
559 return now + group->poll_min_period;
560}
561
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700562/* Schedule polling if it's not already scheduled. */
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700563static void psi_schedule_poll_work(struct psi_group *group, unsigned long delay)
564{
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700565 struct task_struct *task;
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700566
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700567 /*
568 * Do not reschedule if already scheduled.
569 * Possible race with a timer scheduled after this check but before
570 * mod_timer below can be tolerated because group->polling_next_update
571 * will keep updates on schedule.
572 */
573 if (timer_pending(&group->poll_timer))
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700574 return;
575
576 rcu_read_lock();
577
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700578 task = rcu_dereference(group->poll_task);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700579 /*
580 * kworker might be NULL in case psi_trigger_destroy races with
581 * psi_task_change (hotpath) which can't use locks
582 */
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700583 if (likely(task))
584 mod_timer(&group->poll_timer, jiffies + delay);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700585
586 rcu_read_unlock();
587}
588
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700589static void psi_poll_work(struct psi_group *group)
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700590{
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700591 u32 changed_states;
592 u64 now;
593
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700594 mutex_lock(&group->trigger_lock);
595
596 now = sched_clock();
597
598 collect_percpu_times(group, PSI_POLL, &changed_states);
599
600 if (changed_states & group->poll_states) {
601 /* Initialize trigger windows when entering polling mode */
602 if (now > group->polling_until)
603 init_triggers(group, now);
604
605 /*
606 * Keep the monitor active for at least the duration of the
607 * minimum tracking window as long as monitor states are
608 * changing.
609 */
610 group->polling_until = now +
611 group->poll_min_period * UPDATES_PER_WINDOW;
612 }
613
614 if (now > group->polling_until) {
615 group->polling_next_update = ULLONG_MAX;
616 goto out;
617 }
618
619 if (now >= group->polling_next_update)
620 group->polling_next_update = update_triggers(group, now);
621
622 psi_schedule_poll_work(group,
623 nsecs_to_jiffies(group->polling_next_update - now) + 1);
624
625out:
626 mutex_unlock(&group->trigger_lock);
627}
628
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700629static int psi_poll_worker(void *data)
630{
631 struct psi_group *group = (struct psi_group *)data;
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700632
Peter Zijlstra2cca5422020-04-21 12:09:13 +0200633 sched_set_fifo_low(current);
Suren Baghdasaryan461daba2020-05-28 12:54:42 -0700634
635 while (true) {
636 wait_event_interruptible(group->poll_wait,
637 atomic_cmpxchg(&group->poll_wakeup, 1, 0) ||
638 kthread_should_stop());
639 if (kthread_should_stop())
640 break;
641
642 psi_poll_work(group);
643 }
644 return 0;
645}
646
647static void poll_timer_fn(struct timer_list *t)
648{
649 struct psi_group *group = from_timer(group, t, poll_timer);
650
651 atomic_set(&group->poll_wakeup, 1);
652 wake_up_interruptible(&group->poll_wait);
653}
654
Shakeel Buttdf774302021-03-21 13:51:56 -0700655static void record_times(struct psi_group_cpu *groupc, u64 now)
Johannes Weinereb414682018-10-26 15:06:27 -0700656{
657 u32 delta;
Johannes Weinereb414682018-10-26 15:06:27 -0700658
Johannes Weinereb414682018-10-26 15:06:27 -0700659 delta = now - groupc->state_start;
660 groupc->state_start = now;
661
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700662 if (groupc->state_mask & (1 << PSI_IO_SOME)) {
Johannes Weinereb414682018-10-26 15:06:27 -0700663 groupc->times[PSI_IO_SOME] += delta;
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700664 if (groupc->state_mask & (1 << PSI_IO_FULL))
Johannes Weinereb414682018-10-26 15:06:27 -0700665 groupc->times[PSI_IO_FULL] += delta;
666 }
667
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700668 if (groupc->state_mask & (1 << PSI_MEM_SOME)) {
Johannes Weinereb414682018-10-26 15:06:27 -0700669 groupc->times[PSI_MEM_SOME] += delta;
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700670 if (groupc->state_mask & (1 << PSI_MEM_FULL))
Johannes Weinereb414682018-10-26 15:06:27 -0700671 groupc->times[PSI_MEM_FULL] += delta;
Johannes Weinereb414682018-10-26 15:06:27 -0700672 }
673
Chengming Zhoue7fcd762021-03-03 11:46:56 +0800674 if (groupc->state_mask & (1 << PSI_CPU_SOME)) {
Johannes Weinereb414682018-10-26 15:06:27 -0700675 groupc->times[PSI_CPU_SOME] += delta;
Chengming Zhoue7fcd762021-03-03 11:46:56 +0800676 if (groupc->state_mask & (1 << PSI_CPU_FULL))
677 groupc->times[PSI_CPU_FULL] += delta;
678 }
Johannes Weinereb414682018-10-26 15:06:27 -0700679
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700680 if (groupc->state_mask & (1 << PSI_NONIDLE))
Johannes Weinereb414682018-10-26 15:06:27 -0700681 groupc->times[PSI_NONIDLE] += delta;
682}
683
Johannes Weiner36b238d2020-03-16 15:13:32 -0400684static void psi_group_change(struct psi_group *group, int cpu,
Shakeel Buttdf774302021-03-21 13:51:56 -0700685 unsigned int clear, unsigned int set, u64 now,
Johannes Weiner36b238d2020-03-16 15:13:32 -0400686 bool wake_clock)
Johannes Weinereb414682018-10-26 15:06:27 -0700687{
688 struct psi_group_cpu *groupc;
Johannes Weiner36b238d2020-03-16 15:13:32 -0400689 u32 state_mask = 0;
Johannes Weinereb414682018-10-26 15:06:27 -0700690 unsigned int t, m;
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700691 enum psi_states s;
Johannes Weinereb414682018-10-26 15:06:27 -0700692
693 groupc = per_cpu_ptr(group->pcpu, cpu);
694
695 /*
696 * First we assess the aggregate resource states this CPU's
697 * tasks have been in since the last change, and account any
698 * SOME and FULL time these may have resulted in.
699 *
700 * Then we update the task counts according to the state
701 * change requested through the @clear and @set bits.
702 */
703 write_seqcount_begin(&groupc->seq);
704
Shakeel Buttdf774302021-03-21 13:51:56 -0700705 record_times(groupc, now);
Johannes Weinereb414682018-10-26 15:06:27 -0700706
707 for (t = 0, m = clear; m; m &= ~(1 << t), t++) {
708 if (!(m & (1 << t)))
709 continue;
Charan Teja Reddy9d10a132021-04-16 20:32:16 +0530710 if (groupc->tasks[t]) {
711 groupc->tasks[t]--;
712 } else if (!psi_bug) {
Johannes Weinerb05e75d2020-03-16 15:13:31 -0400713 printk_deferred(KERN_ERR "psi: task underflow! cpu=%d t=%d tasks=[%u %u %u %u] clear=%x set=%x\n",
Johannes Weinereb414682018-10-26 15:06:27 -0700714 cpu, t, groupc->tasks[0],
715 groupc->tasks[1], groupc->tasks[2],
Johannes Weinerb05e75d2020-03-16 15:13:31 -0400716 groupc->tasks[3], clear, set);
Johannes Weinereb414682018-10-26 15:06:27 -0700717 psi_bug = 1;
718 }
Johannes Weinereb414682018-10-26 15:06:27 -0700719 }
720
721 for (t = 0; set; set &= ~(1 << t), t++)
722 if (set & (1 << t))
723 groupc->tasks[t]++;
724
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700725 /* Calculate state mask representing active states */
726 for (s = 0; s < NR_PSI_STATES; s++) {
727 if (test_state(groupc->tasks, s))
728 state_mask |= (1 << s);
729 }
Chengming Zhou7fae6c82021-03-03 11:46:57 +0800730
731 /*
732 * Since we care about lost potential, a memstall is FULL
733 * when there are no other working tasks, but also when
734 * the CPU is actively reclaiming and nothing productive
735 * could run even if it were runnable. So when the current
736 * task in a cgroup is in_memstall, the corresponding groupc
737 * on that cpu is in PSI_MEM_FULL state.
738 */
Johannes Weinerfddc8ba2021-03-03 11:46:58 +0800739 if (unlikely(groupc->tasks[NR_ONCPU] && cpu_curr(cpu)->in_memstall))
Chengming Zhou7fae6c82021-03-03 11:46:57 +0800740 state_mask |= (1 << PSI_MEM_FULL);
741
Suren Baghdasaryan33b2d632019-05-14 15:40:56 -0700742 groupc->state_mask = state_mask;
743
Johannes Weinereb414682018-10-26 15:06:27 -0700744 write_seqcount_end(&groupc->seq);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700745
Johannes Weiner36b238d2020-03-16 15:13:32 -0400746 if (state_mask & group->poll_states)
747 psi_schedule_poll_work(group, 1);
748
749 if (wake_clock && !delayed_work_pending(&group->avgs_work))
750 schedule_delayed_work(&group->avgs_work, PSI_FREQ);
Johannes Weinereb414682018-10-26 15:06:27 -0700751}
752
Johannes Weiner2ce71352018-10-26 15:06:31 -0700753static struct psi_group *iterate_groups(struct task_struct *task, void **iter)
754{
Suren Baghdasaryan3958e2d2021-05-24 12:53:39 -0700755 if (*iter == &psi_system)
756 return NULL;
757
Johannes Weiner2ce71352018-10-26 15:06:31 -0700758#ifdef CONFIG_CGROUPS
Suren Baghdasaryan3958e2d2021-05-24 12:53:39 -0700759 if (static_branch_likely(&psi_cgroups_enabled)) {
760 struct cgroup *cgroup = NULL;
Johannes Weiner2ce71352018-10-26 15:06:31 -0700761
Suren Baghdasaryan3958e2d2021-05-24 12:53:39 -0700762 if (!*iter)
763 cgroup = task->cgroups->dfl_cgrp;
764 else
765 cgroup = cgroup_parent(*iter);
Johannes Weiner2ce71352018-10-26 15:06:31 -0700766
Suren Baghdasaryan3958e2d2021-05-24 12:53:39 -0700767 if (cgroup && cgroup_parent(cgroup)) {
768 *iter = cgroup;
769 return cgroup_psi(cgroup);
770 }
Johannes Weiner2ce71352018-10-26 15:06:31 -0700771 }
Johannes Weiner2ce71352018-10-26 15:06:31 -0700772#endif
773 *iter = &psi_system;
774 return &psi_system;
775}
776
Johannes Weiner36b238d2020-03-16 15:13:32 -0400777static void psi_flags_change(struct task_struct *task, int clear, int set)
778{
779 if (((task->psi_flags & set) ||
780 (task->psi_flags & clear) != clear) &&
781 !psi_bug) {
782 printk_deferred(KERN_ERR "psi: inconsistent task state! task=%d:%s cpu=%d psi_flags=%x clear=%x set=%x\n",
783 task->pid, task->comm, task_cpu(task),
784 task->psi_flags, clear, set);
785 psi_bug = 1;
786 }
787
788 task->psi_flags &= ~clear;
789 task->psi_flags |= set;
790}
791
Johannes Weinereb414682018-10-26 15:06:27 -0700792void psi_task_change(struct task_struct *task, int clear, int set)
793{
794 int cpu = task_cpu(task);
Johannes Weiner2ce71352018-10-26 15:06:31 -0700795 struct psi_group *group;
Johannes Weiner1b69ac62019-02-01 14:20:42 -0800796 bool wake_clock = true;
Johannes Weiner2ce71352018-10-26 15:06:31 -0700797 void *iter = NULL;
Shakeel Buttdf774302021-03-21 13:51:56 -0700798 u64 now;
Johannes Weinereb414682018-10-26 15:06:27 -0700799
800 if (!task->pid)
801 return;
802
Johannes Weiner36b238d2020-03-16 15:13:32 -0400803 psi_flags_change(task, clear, set);
Johannes Weinereb414682018-10-26 15:06:27 -0700804
Shakeel Buttdf774302021-03-21 13:51:56 -0700805 now = cpu_clock(cpu);
Johannes Weiner1b69ac62019-02-01 14:20:42 -0800806 /*
807 * Periodic aggregation shuts off if there is a period of no
808 * task changes, so we wake it back up if necessary. However,
809 * don't do this if the task change is the aggregation worker
810 * itself going to sleep, or we'll ping-pong forever.
811 */
812 if (unlikely((clear & TSK_RUNNING) &&
813 (task->flags & PF_WQ_WORKER) &&
Suren Baghdasaryanbcc78db2019-05-14 15:41:02 -0700814 wq_worker_last_func(task) == psi_avgs_work))
Johannes Weiner1b69ac62019-02-01 14:20:42 -0800815 wake_clock = false;
816
Johannes Weiner36b238d2020-03-16 15:13:32 -0400817 while ((group = iterate_groups(task, &iter)))
Shakeel Buttdf774302021-03-21 13:51:56 -0700818 psi_group_change(group, cpu, clear, set, now, wake_clock);
Johannes Weiner36b238d2020-03-16 15:13:32 -0400819}
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700820
Johannes Weiner36b238d2020-03-16 15:13:32 -0400821void psi_task_switch(struct task_struct *prev, struct task_struct *next,
822 bool sleep)
823{
824 struct psi_group *group, *common = NULL;
825 int cpu = task_cpu(prev);
826 void *iter;
Shakeel Buttdf774302021-03-21 13:51:56 -0700827 u64 now = cpu_clock(cpu);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700828
Johannes Weiner36b238d2020-03-16 15:13:32 -0400829 if (next->pid) {
Chengming Zhou7fae6c82021-03-03 11:46:57 +0800830 bool identical_state;
831
Johannes Weiner36b238d2020-03-16 15:13:32 -0400832 psi_flags_change(next, 0, TSK_ONCPU);
833 /*
Chengming Zhou7fae6c82021-03-03 11:46:57 +0800834 * When switching between tasks that have an identical
835 * runtime state, the cgroup that contains both tasks
836 * runtime state, the cgroup that contains both tasks
837 * we reach the first common ancestor. Iterate @next's
838 * ancestors only until we encounter @prev's ONCPU.
Johannes Weiner36b238d2020-03-16 15:13:32 -0400839 */
Chengming Zhou7fae6c82021-03-03 11:46:57 +0800840 identical_state = prev->psi_flags == next->psi_flags;
Johannes Weiner36b238d2020-03-16 15:13:32 -0400841 iter = NULL;
842 while ((group = iterate_groups(next, &iter))) {
Chengming Zhou7fae6c82021-03-03 11:46:57 +0800843 if (identical_state &&
844 per_cpu_ptr(group->pcpu, cpu)->tasks[NR_ONCPU]) {
Johannes Weiner36b238d2020-03-16 15:13:32 -0400845 common = group;
846 break;
847 }
848
Shakeel Buttdf774302021-03-21 13:51:56 -0700849 psi_group_change(group, cpu, 0, TSK_ONCPU, now, true);
Johannes Weiner36b238d2020-03-16 15:13:32 -0400850 }
851 }
852
Johannes Weiner36b238d2020-03-16 15:13:32 -0400853 if (prev->pid) {
Chengming Zhou4117ceb2021-03-03 11:46:59 +0800854 int clear = TSK_ONCPU, set = 0;
855
856 /*
857 * When we're going to sleep, psi_dequeue() lets us handle
858 * TSK_RUNNING and TSK_IOWAIT here, where we can combine it
859 * with TSK_ONCPU and save walking common ancestors twice.
860 */
861 if (sleep) {
862 clear |= TSK_RUNNING;
863 if (prev->in_iowait)
864 set |= TSK_IOWAIT;
865 }
866
867 psi_flags_change(prev, clear, set);
Johannes Weiner36b238d2020-03-16 15:13:32 -0400868
869 iter = NULL;
870 while ((group = iterate_groups(prev, &iter)) && group != common)
Shakeel Buttdf774302021-03-21 13:51:56 -0700871 psi_group_change(group, cpu, clear, set, now, true);
Chengming Zhou4117ceb2021-03-03 11:46:59 +0800872
873 /*
874 * TSK_ONCPU is handled up to the common ancestor. If we're tasked
875 * with dequeuing too, finish that for the rest of the hierarchy.
876 */
877 if (sleep) {
878 clear &= ~TSK_ONCPU;
879 for (; group; group = iterate_groups(prev, &iter))
Shakeel Buttdf774302021-03-21 13:51:56 -0700880 psi_group_change(group, cpu, clear, set, now, true);
Chengming Zhou4117ceb2021-03-03 11:46:59 +0800881 }
Johannes Weiner1b69ac62019-02-01 14:20:42 -0800882 }
Johannes Weinereb414682018-10-26 15:06:27 -0700883}
884
Johannes Weinereb414682018-10-26 15:06:27 -0700885/**
886 * psi_memstall_enter - mark the beginning of a memory stall section
887 * @flags: flags to handle nested sections
888 *
889 * Marks the calling task as being stalled due to a lack of memory,
890 * such as waiting for a refault or performing reclaim.
891 */
892void psi_memstall_enter(unsigned long *flags)
893{
894 struct rq_flags rf;
895 struct rq *rq;
896
Johannes Weinere0c27442018-11-30 14:09:58 -0800897 if (static_branch_likely(&psi_disabled))
Johannes Weinereb414682018-10-26 15:06:27 -0700898 return;
899
Yafang Shao1066d1b2020-03-16 21:28:05 -0400900 *flags = current->in_memstall;
Johannes Weinereb414682018-10-26 15:06:27 -0700901 if (*flags)
902 return;
903 /*
Yafang Shao1066d1b2020-03-16 21:28:05 -0400904 * in_memstall setting & accounting needs to be atomic wrt
Johannes Weinereb414682018-10-26 15:06:27 -0700905 * changes to the task's scheduling state, otherwise we can
906 * race with CPU migration.
907 */
908 rq = this_rq_lock_irq(&rf);
909
Yafang Shao1066d1b2020-03-16 21:28:05 -0400910 current->in_memstall = 1;
Johannes Weinereb414682018-10-26 15:06:27 -0700911 psi_task_change(current, 0, TSK_MEMSTALL);
912
913 rq_unlock_irq(rq, &rf);
914}
915
916/**
917 * psi_memstall_leave - mark the end of an memory stall section
918 * @flags: flags to handle nested memdelay sections
919 *
920 * Marks the calling task as no longer stalled due to lack of memory.
921 */
922void psi_memstall_leave(unsigned long *flags)
923{
924 struct rq_flags rf;
925 struct rq *rq;
926
Johannes Weinere0c27442018-11-30 14:09:58 -0800927 if (static_branch_likely(&psi_disabled))
Johannes Weinereb414682018-10-26 15:06:27 -0700928 return;
929
930 if (*flags)
931 return;
932 /*
Yafang Shao1066d1b2020-03-16 21:28:05 -0400933 * in_memstall clearing & accounting needs to be atomic wrt
Johannes Weinereb414682018-10-26 15:06:27 -0700934 * changes to the task's scheduling state, otherwise we could
935 * race with CPU migration.
936 */
937 rq = this_rq_lock_irq(&rf);
938
Yafang Shao1066d1b2020-03-16 21:28:05 -0400939 current->in_memstall = 0;
Johannes Weinereb414682018-10-26 15:06:27 -0700940 psi_task_change(current, TSK_MEMSTALL, 0);
941
942 rq_unlock_irq(rq, &rf);
943}
944
Johannes Weiner2ce71352018-10-26 15:06:31 -0700945#ifdef CONFIG_CGROUPS
946int psi_cgroup_alloc(struct cgroup *cgroup)
947{
Johannes Weinere0c27442018-11-30 14:09:58 -0800948 if (static_branch_likely(&psi_disabled))
Johannes Weiner2ce71352018-10-26 15:06:31 -0700949 return 0;
950
951 cgroup->psi.pcpu = alloc_percpu(struct psi_group_cpu);
952 if (!cgroup->psi.pcpu)
953 return -ENOMEM;
954 group_init(&cgroup->psi);
955 return 0;
956}
957
958void psi_cgroup_free(struct cgroup *cgroup)
959{
Johannes Weinere0c27442018-11-30 14:09:58 -0800960 if (static_branch_likely(&psi_disabled))
Johannes Weiner2ce71352018-10-26 15:06:31 -0700961 return;
962
Suren Baghdasaryanbcc78db2019-05-14 15:41:02 -0700963 cancel_delayed_work_sync(&cgroup->psi.avgs_work);
Johannes Weiner2ce71352018-10-26 15:06:31 -0700964 free_percpu(cgroup->psi.pcpu);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -0700965 /* All triggers must be removed by now */
966 WARN_ONCE(cgroup->psi.poll_states, "psi: trigger leak\n");
Johannes Weiner2ce71352018-10-26 15:06:31 -0700967}
968
969/**
970 * cgroup_move_task - move task to a different cgroup
971 * @task: the task
972 * @to: the target css_set
973 *
974 * Move task to a new cgroup and safely migrate its associated stall
975 * state between the different groups.
976 *
977 * This function acquires the task's rq lock to lock out concurrent
978 * changes to the task's scheduling state and - in case the task is
979 * running - concurrent changes to its stall state.
980 */
981void cgroup_move_task(struct task_struct *task, struct css_set *to)
982{
Johannes Weinerd583d362021-05-03 13:49:17 -0400983 unsigned int task_flags;
Johannes Weiner2ce71352018-10-26 15:06:31 -0700984 struct rq_flags rf;
985 struct rq *rq;
986
Johannes Weinere0c27442018-11-30 14:09:58 -0800987 if (static_branch_likely(&psi_disabled)) {
Olof Johansson8fcb2312018-11-16 15:08:00 -0800988 /*
989 * Lame to do this here, but the scheduler cannot be locked
990 * from the outside, so we move cgroups from inside sched/.
991 */
992 rcu_assign_pointer(task->cgroups, to);
993 return;
Johannes Weiner2ce71352018-10-26 15:06:31 -0700994 }
995
Olof Johansson8fcb2312018-11-16 15:08:00 -0800996 rq = task_rq_lock(task, &rf);
997
Johannes Weinerd583d362021-05-03 13:49:17 -0400998 /*
999 * We may race with schedule() dropping the rq lock between
1000 * deactivating prev and switching to next. Because the psi
1001 * updates from the deactivation are deferred to the switch
1002 * callback to save cgroup tree updates, the task's scheduling
1003 * state here is not coherent with its psi state:
1004 *
1005 * schedule() cgroup_move_task()
1006 * rq_lock()
1007 * deactivate_task()
1008 * p->on_rq = 0
1009 * psi_dequeue() // defers TSK_RUNNING & TSK_IOWAIT updates
1010 * pick_next_task()
1011 * rq_unlock()
1012 * rq_lock()
1013 * psi_task_change() // old cgroup
1014 * task->cgroups = to
1015 * psi_task_change() // new cgroup
1016 * rq_unlock()
1017 * rq_lock()
1018 * psi_sched_switch() // does deferred updates in new cgroup
1019 *
1020 * Don't rely on the scheduling state. Use psi_flags instead.
1021 */
1022 task_flags = task->psi_flags;
Olof Johansson8fcb2312018-11-16 15:08:00 -08001023
1024 if (task_flags)
1025 psi_task_change(task, task_flags, 0);
1026
1027 /* See comment above */
Johannes Weiner2ce71352018-10-26 15:06:31 -07001028 rcu_assign_pointer(task->cgroups, to);
1029
Olof Johansson8fcb2312018-11-16 15:08:00 -08001030 if (task_flags)
1031 psi_task_change(task, 0, task_flags);
Johannes Weiner2ce71352018-10-26 15:06:31 -07001032
Olof Johansson8fcb2312018-11-16 15:08:00 -08001033 task_rq_unlock(rq, task, &rf);
Johannes Weiner2ce71352018-10-26 15:06:31 -07001034}
1035#endif /* CONFIG_CGROUPS */
1036
1037int psi_show(struct seq_file *m, struct psi_group *group, enum psi_res res)
Johannes Weinereb414682018-10-26 15:06:27 -07001038{
1039 int full;
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -07001040 u64 now;
Johannes Weinereb414682018-10-26 15:06:27 -07001041
Johannes Weinere0c27442018-11-30 14:09:58 -08001042 if (static_branch_likely(&psi_disabled))
Johannes Weinereb414682018-10-26 15:06:27 -07001043 return -EOPNOTSUPP;
1044
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -07001045 /* Update averages before reporting them */
1046 mutex_lock(&group->avgs_lock);
1047 now = sched_clock();
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001048 collect_percpu_times(group, PSI_AVGS, NULL);
Suren Baghdasaryan7fc70a32019-05-14 15:41:06 -07001049 if (now >= group->avg_next_update)
1050 group->avg_next_update = update_averages(group, now);
1051 mutex_unlock(&group->avgs_lock);
Johannes Weinereb414682018-10-26 15:06:27 -07001052
Chengming Zhoue7fcd762021-03-03 11:46:56 +08001053 for (full = 0; full < 2; full++) {
Johannes Weinereb414682018-10-26 15:06:27 -07001054 unsigned long avg[3];
1055 u64 total;
1056 int w;
1057
1058 for (w = 0; w < 3; w++)
1059 avg[w] = group->avg[res * 2 + full][w];
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001060 total = div_u64(group->total[PSI_AVGS][res * 2 + full],
1061 NSEC_PER_USEC);
Johannes Weinereb414682018-10-26 15:06:27 -07001062
1063 seq_printf(m, "%s avg10=%lu.%02lu avg60=%lu.%02lu avg300=%lu.%02lu total=%llu\n",
1064 full ? "full" : "some",
1065 LOAD_INT(avg[0]), LOAD_FRAC(avg[0]),
1066 LOAD_INT(avg[1]), LOAD_FRAC(avg[1]),
1067 LOAD_INT(avg[2]), LOAD_FRAC(avg[2]),
1068 total);
1069 }
1070
1071 return 0;
1072}
1073
1074static int psi_io_show(struct seq_file *m, void *v)
1075{
1076 return psi_show(m, &psi_system, PSI_IO);
1077}
1078
1079static int psi_memory_show(struct seq_file *m, void *v)
1080{
1081 return psi_show(m, &psi_system, PSI_MEM);
1082}
1083
1084static int psi_cpu_show(struct seq_file *m, void *v)
1085{
1086 return psi_show(m, &psi_system, PSI_CPU);
1087}
1088
Josh Hunt6db12ee2021-04-01 22:58:33 -04001089static int psi_open(struct file *file, int (*psi_show)(struct seq_file *, void *))
1090{
1091 if (file->f_mode & FMODE_WRITE && !capable(CAP_SYS_RESOURCE))
1092 return -EPERM;
1093
1094 return single_open(file, psi_show, NULL);
1095}
1096
Johannes Weinereb414682018-10-26 15:06:27 -07001097static int psi_io_open(struct inode *inode, struct file *file)
1098{
Josh Hunt6db12ee2021-04-01 22:58:33 -04001099 return psi_open(file, psi_io_show);
Johannes Weinereb414682018-10-26 15:06:27 -07001100}
1101
1102static int psi_memory_open(struct inode *inode, struct file *file)
1103{
Josh Hunt6db12ee2021-04-01 22:58:33 -04001104 return psi_open(file, psi_memory_show);
Johannes Weinereb414682018-10-26 15:06:27 -07001105}
1106
1107static int psi_cpu_open(struct inode *inode, struct file *file)
1108{
Josh Hunt6db12ee2021-04-01 22:58:33 -04001109 return psi_open(file, psi_cpu_show);
Johannes Weinereb414682018-10-26 15:06:27 -07001110}
1111
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001112struct psi_trigger *psi_trigger_create(struct psi_group *group,
1113 char *buf, size_t nbytes, enum psi_res res)
1114{
1115 struct psi_trigger *t;
1116 enum psi_states state;
1117 u32 threshold_us;
1118 u32 window_us;
1119
1120 if (static_branch_likely(&psi_disabled))
1121 return ERR_PTR(-EOPNOTSUPP);
1122
1123 if (sscanf(buf, "some %u %u", &threshold_us, &window_us) == 2)
1124 state = PSI_IO_SOME + res * 2;
1125 else if (sscanf(buf, "full %u %u", &threshold_us, &window_us) == 2)
1126 state = PSI_IO_FULL + res * 2;
1127 else
1128 return ERR_PTR(-EINVAL);
1129
1130 if (state >= PSI_NONIDLE)
1131 return ERR_PTR(-EINVAL);
1132
1133 if (window_us < WINDOW_MIN_US ||
1134 window_us > WINDOW_MAX_US)
1135 return ERR_PTR(-EINVAL);
1136
1137 /* Check threshold */
1138 if (threshold_us == 0 || threshold_us > window_us)
1139 return ERR_PTR(-EINVAL);
1140
1141 t = kmalloc(sizeof(*t), GFP_KERNEL);
1142 if (!t)
1143 return ERR_PTR(-ENOMEM);
1144
1145 t->group = group;
1146 t->state = state;
1147 t->threshold = threshold_us * NSEC_PER_USEC;
1148 t->win.size = window_us * NSEC_PER_USEC;
1149 window_reset(&t->win, 0, 0, 0);
1150
1151 t->event = 0;
1152 t->last_event_time = 0;
1153 init_waitqueue_head(&t->event_wait);
1154 kref_init(&t->refcount);
1155
1156 mutex_lock(&group->trigger_lock);
1157
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001158 if (!rcu_access_pointer(group->poll_task)) {
1159 struct task_struct *task;
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001160
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001161 task = kthread_create(psi_poll_worker, group, "psimon");
1162 if (IS_ERR(task)) {
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001163 kfree(t);
1164 mutex_unlock(&group->trigger_lock);
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001165 return ERR_CAST(task);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001166 }
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001167 atomic_set(&group->poll_wakeup, 0);
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001168 wake_up_process(task);
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001169 rcu_assign_pointer(group->poll_task, task);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001170 }
1171
1172 list_add(&t->node, &group->triggers);
1173 group->poll_min_period = min(group->poll_min_period,
1174 div_u64(t->win.size, UPDATES_PER_WINDOW));
1175 group->nr_triggers[t->state]++;
1176 group->poll_states |= (1 << t->state);
1177
1178 mutex_unlock(&group->trigger_lock);
1179
1180 return t;
1181}
1182
1183static void psi_trigger_destroy(struct kref *ref)
1184{
1185 struct psi_trigger *t = container_of(ref, struct psi_trigger, refcount);
1186 struct psi_group *group = t->group;
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001187 struct task_struct *task_to_destroy = NULL;
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001188
1189 if (static_branch_likely(&psi_disabled))
1190 return;
1191
1192 /*
1193 * Wakeup waiters to stop polling. Can happen if cgroup is deleted
1194 * from under a polling process.
1195 */
1196 wake_up_interruptible(&t->event_wait);
1197
1198 mutex_lock(&group->trigger_lock);
1199
1200 if (!list_empty(&t->node)) {
1201 struct psi_trigger *tmp;
1202 u64 period = ULLONG_MAX;
1203
1204 list_del(&t->node);
1205 group->nr_triggers[t->state]--;
1206 if (!group->nr_triggers[t->state])
1207 group->poll_states &= ~(1 << t->state);
1208 /* reset min update period for the remaining triggers */
1209 list_for_each_entry(tmp, &group->triggers, node)
1210 period = min(period, div_u64(tmp->win.size,
1211 UPDATES_PER_WINDOW));
1212 group->poll_min_period = period;
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001213 /* Destroy poll_task when the last trigger is destroyed */
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001214 if (group->poll_states == 0) {
1215 group->polling_until = 0;
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001216 task_to_destroy = rcu_dereference_protected(
1217 group->poll_task,
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001218 lockdep_is_held(&group->trigger_lock));
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001219 rcu_assign_pointer(group->poll_task, NULL);
Zhaoyang Huang8f91efd2021-06-11 08:29:34 +08001220 del_timer(&group->poll_timer);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001221 }
1222 }
1223
1224 mutex_unlock(&group->trigger_lock);
1225
1226 /*
1227 * Wait for both *trigger_ptr from psi_trigger_replace and
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001228 * poll_task RCUs to complete their read-side critical sections
1229 * before destroying the trigger and optionally the poll_task
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001230 */
1231 synchronize_rcu();
1232 /*
Zhaoyang Huang8f91efd2021-06-11 08:29:34 +08001233 * Stop kthread 'psimon' after releasing trigger_lock to prevent a
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001234 * deadlock while waiting for psi_poll_work to acquire trigger_lock
1235 */
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001236 if (task_to_destroy) {
Jason Xing7b2b55d2019-08-24 17:54:53 -07001237 /*
1238 * After the RCU grace period has expired, the worker
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001239 * can no longer be found through group->poll_task.
Jason Xing7b2b55d2019-08-24 17:54:53 -07001240 */
Suren Baghdasaryan461daba2020-05-28 12:54:42 -07001241 kthread_stop(task_to_destroy);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001242 }
1243 kfree(t);
1244}
1245
1246void psi_trigger_replace(void **trigger_ptr, struct psi_trigger *new)
1247{
1248 struct psi_trigger *old = *trigger_ptr;
1249
1250 if (static_branch_likely(&psi_disabled))
1251 return;
1252
1253 rcu_assign_pointer(*trigger_ptr, new);
1254 if (old)
1255 kref_put(&old->refcount, psi_trigger_destroy);
1256}
1257
1258__poll_t psi_trigger_poll(void **trigger_ptr,
1259 struct file *file, poll_table *wait)
1260{
1261 __poll_t ret = DEFAULT_POLLMASK;
1262 struct psi_trigger *t;
1263
1264 if (static_branch_likely(&psi_disabled))
1265 return DEFAULT_POLLMASK | EPOLLERR | EPOLLPRI;
1266
1267 rcu_read_lock();
1268
1269 t = rcu_dereference(*(void __rcu __force **)trigger_ptr);
1270 if (!t) {
1271 rcu_read_unlock();
1272 return DEFAULT_POLLMASK | EPOLLERR | EPOLLPRI;
1273 }
1274 kref_get(&t->refcount);
1275
1276 rcu_read_unlock();
1277
1278 poll_wait(file, &t->event_wait, wait);
1279
1280 if (cmpxchg(&t->event, 1, 0) == 1)
1281 ret |= EPOLLPRI;
1282
1283 kref_put(&t->refcount, psi_trigger_destroy);
1284
1285 return ret;
1286}
1287
1288static ssize_t psi_write(struct file *file, const char __user *user_buf,
1289 size_t nbytes, enum psi_res res)
1290{
1291 char buf[32];
1292 size_t buf_size;
1293 struct seq_file *seq;
1294 struct psi_trigger *new;
1295
1296 if (static_branch_likely(&psi_disabled))
1297 return -EOPNOTSUPP;
1298
Suren Baghdasaryan6fcca0f2020-02-03 13:22:16 -08001299 if (!nbytes)
1300 return -EINVAL;
1301
Miles Chen4adcdce2019-09-12 18:34:52 +08001302 buf_size = min(nbytes, sizeof(buf));
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07001303 if (copy_from_user(buf, user_buf, buf_size))
1304 return -EFAULT;
1305
1306 buf[buf_size - 1] = '\0';
1307
1308 new = psi_trigger_create(&psi_system, buf, nbytes, res);
1309 if (IS_ERR(new))
1310 return PTR_ERR(new);
1311
1312 seq = file->private_data;
1313 /* Take seq->lock to protect seq->private from concurrent writes */
1314 mutex_lock(&seq->lock);
1315 psi_trigger_replace(&seq->private, new);
1316 mutex_unlock(&seq->lock);
1317
1318 return nbytes;
1319}
1320
1321static ssize_t psi_io_write(struct file *file, const char __user *user_buf,
1322 size_t nbytes, loff_t *ppos)
1323{
1324 return psi_write(file, user_buf, nbytes, PSI_IO);
1325}
1326
1327static ssize_t psi_memory_write(struct file *file, const char __user *user_buf,
1328 size_t nbytes, loff_t *ppos)
1329{
1330 return psi_write(file, user_buf, nbytes, PSI_MEM);
1331}
1332
1333static ssize_t psi_cpu_write(struct file *file, const char __user *user_buf,
1334 size_t nbytes, loff_t *ppos)
1335{
1336 return psi_write(file, user_buf, nbytes, PSI_CPU);
1337}
1338
1339static __poll_t psi_fop_poll(struct file *file, poll_table *wait)
1340{
1341 struct seq_file *seq = file->private_data;
1342
1343 return psi_trigger_poll(&seq->private, file, wait);
1344}
1345
1346static int psi_fop_release(struct inode *inode, struct file *file)
1347{
1348 struct seq_file *seq = file->private_data;
1349
1350 psi_trigger_replace(&seq->private, NULL);
1351 return single_release(inode, file);
1352}
1353
Alexey Dobriyan97a32532020-02-03 17:37:17 -08001354static const struct proc_ops psi_io_proc_ops = {
1355 .proc_open = psi_io_open,
1356 .proc_read = seq_read,
1357 .proc_lseek = seq_lseek,
1358 .proc_write = psi_io_write,
1359 .proc_poll = psi_fop_poll,
1360 .proc_release = psi_fop_release,
Johannes Weinereb414682018-10-26 15:06:27 -07001361};
1362
Alexey Dobriyan97a32532020-02-03 17:37:17 -08001363static const struct proc_ops psi_memory_proc_ops = {
1364 .proc_open = psi_memory_open,
1365 .proc_read = seq_read,
1366 .proc_lseek = seq_lseek,
1367 .proc_write = psi_memory_write,
1368 .proc_poll = psi_fop_poll,
1369 .proc_release = psi_fop_release,
Johannes Weinereb414682018-10-26 15:06:27 -07001370};
1371
Alexey Dobriyan97a32532020-02-03 17:37:17 -08001372static const struct proc_ops psi_cpu_proc_ops = {
1373 .proc_open = psi_cpu_open,
1374 .proc_read = seq_read,
1375 .proc_lseek = seq_lseek,
1376 .proc_write = psi_cpu_write,
1377 .proc_poll = psi_fop_poll,
1378 .proc_release = psi_fop_release,
Johannes Weinereb414682018-10-26 15:06:27 -07001379};
1380
1381static int __init psi_proc_init(void)
1382{
Wang Long3d817682019-12-18 20:38:18 +08001383 if (psi_enable) {
1384 proc_mkdir("pressure", NULL);
Josh Hunt6db12ee2021-04-01 22:58:33 -04001385 proc_create("pressure/io", 0666, NULL, &psi_io_proc_ops);
1386 proc_create("pressure/memory", 0666, NULL, &psi_memory_proc_ops);
1387 proc_create("pressure/cpu", 0666, NULL, &psi_cpu_proc_ops);
Wang Long3d817682019-12-18 20:38:18 +08001388 }
Johannes Weinereb414682018-10-26 15:06:27 -07001389 return 0;
1390}
1391module_init(psi_proc_init);