blob: 1486768f23185ebb4a79fead2deffe1a3ceb7c57 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Tejun Heo041cd642017-09-25 08:12:05 -07002#include "cgroup-internal.h"
3
4#include <linux/sched/cputime.h>
5
Tejun Heo0fa294f2018-04-26 14:29:05 -07006static DEFINE_SPINLOCK(cgroup_rstat_lock);
Tejun Heoc58632b2018-04-26 14:29:04 -07007static DEFINE_PER_CPU(raw_spinlock_t, cgroup_rstat_cpu_lock);
Tejun Heo041cd642017-09-25 08:12:05 -07008
Tejun Heoa17556f82018-04-26 14:29:05 -07009static void cgroup_base_stat_flush(struct cgroup *cgrp, int cpu);
10
Tejun Heoc58632b2018-04-26 14:29:04 -070011static struct cgroup_rstat_cpu *cgroup_rstat_cpu(struct cgroup *cgrp, int cpu)
Tejun Heo041cd642017-09-25 08:12:05 -070012{
Tejun Heoc58632b2018-04-26 14:29:04 -070013 return per_cpu_ptr(cgrp->rstat_cpu, cpu);
Tejun Heo041cd642017-09-25 08:12:05 -070014}
15
16/**
Tejun Heo6162cef2018-04-26 14:29:05 -070017 * cgroup_rstat_updated - keep track of updated rstat_cpu
Tejun Heo041cd642017-09-25 08:12:05 -070018 * @cgrp: target cgroup
Tejun Heoc58632b2018-04-26 14:29:04 -070019 * @cpu: cpu on which rstat_cpu was updated
Tejun Heo041cd642017-09-25 08:12:05 -070020 *
Tejun Heoc58632b2018-04-26 14:29:04 -070021 * @cgrp's rstat_cpu on @cpu was updated. Put it on the parent's matching
22 * rstat_cpu->updated_children list. See the comment on top of
23 * cgroup_rstat_cpu definition for details.
Tejun Heo041cd642017-09-25 08:12:05 -070024 */
Tejun Heo6162cef2018-04-26 14:29:05 -070025void cgroup_rstat_updated(struct cgroup *cgrp, int cpu)
Tejun Heo041cd642017-09-25 08:12:05 -070026{
Tejun Heoc58632b2018-04-26 14:29:04 -070027 raw_spinlock_t *cpu_lock = per_cpu_ptr(&cgroup_rstat_cpu_lock, cpu);
Tejun Heo041cd642017-09-25 08:12:05 -070028 unsigned long flags;
29
30 /*
Tejun Heod8ef4b32020-04-09 14:55:35 -040031 * Speculative already-on-list test. This may race leading to
32 * temporary inaccuracies, which is fine.
33 *
Tejun Heo041cd642017-09-25 08:12:05 -070034 * Because @parent's updated_children is terminated with @parent
35 * instead of NULL, we can tell whether @cgrp is on the list by
36 * testing the next pointer for NULL.
37 */
Tejun Heoc58632b2018-04-26 14:29:04 -070038 if (cgroup_rstat_cpu(cgrp, cpu)->updated_next)
Tejun Heo041cd642017-09-25 08:12:05 -070039 return;
40
41 raw_spin_lock_irqsave(cpu_lock, flags);
42
43 /* put @cgrp and all ancestors on the corresponding updated lists */
Johannes Weinerdc265322021-04-29 22:56:23 -070044 while (true) {
Tejun Heoc58632b2018-04-26 14:29:04 -070045 struct cgroup_rstat_cpu *rstatc = cgroup_rstat_cpu(cgrp, cpu);
Johannes Weinerdc265322021-04-29 22:56:23 -070046 struct cgroup *parent = cgroup_parent(cgrp);
47 struct cgroup_rstat_cpu *prstatc;
Tejun Heo041cd642017-09-25 08:12:05 -070048
49 /*
50 * Both additions and removals are bottom-up. If a cgroup
51 * is already in the tree, all ancestors are.
52 */
Tejun Heoc58632b2018-04-26 14:29:04 -070053 if (rstatc->updated_next)
Tejun Heo041cd642017-09-25 08:12:05 -070054 break;
55
Johannes Weinerdc265322021-04-29 22:56:23 -070056 /* Root has no parent to link it to, but mark it busy */
57 if (!parent) {
58 rstatc->updated_next = cgrp;
59 break;
60 }
61
62 prstatc = cgroup_rstat_cpu(parent, cpu);
Tejun Heoc58632b2018-04-26 14:29:04 -070063 rstatc->updated_next = prstatc->updated_children;
64 prstatc->updated_children = cgrp;
Johannes Weinerdc265322021-04-29 22:56:23 -070065
66 cgrp = parent;
Tejun Heo041cd642017-09-25 08:12:05 -070067 }
68
69 raw_spin_unlock_irqrestore(cpu_lock, flags);
70}
71
72/**
Tejun Heoc58632b2018-04-26 14:29:04 -070073 * cgroup_rstat_cpu_pop_updated - iterate and dismantle rstat_cpu updated tree
Tejun Heo041cd642017-09-25 08:12:05 -070074 * @pos: current position
75 * @root: root of the tree to traversal
76 * @cpu: target cpu
77 *
Zhen Lei08b2b6f2021-05-24 16:29:43 +080078 * Walks the updated rstat_cpu tree on @cpu from @root. %NULL @pos starts
Tejun Heo041cd642017-09-25 08:12:05 -070079 * the traversal and %NULL return indicates the end. During traversal,
80 * each returned cgroup is unlinked from the tree. Must be called with the
Tejun Heoc58632b2018-04-26 14:29:04 -070081 * matching cgroup_rstat_cpu_lock held.
Tejun Heo041cd642017-09-25 08:12:05 -070082 *
83 * The only ordering guarantee is that, for a parent and a child pair
84 * covered by a given traversal, if a child is visited, its parent is
85 * guaranteed to be visited afterwards.
86 */
Tejun Heoc58632b2018-04-26 14:29:04 -070087static struct cgroup *cgroup_rstat_cpu_pop_updated(struct cgroup *pos,
88 struct cgroup *root, int cpu)
Tejun Heo041cd642017-09-25 08:12:05 -070089{
Tejun Heoc58632b2018-04-26 14:29:04 -070090 struct cgroup_rstat_cpu *rstatc;
Tejun Heo041cd642017-09-25 08:12:05 -070091
92 if (pos == root)
93 return NULL;
94
95 /*
96 * We're gonna walk down to the first leaf and visit/remove it. We
97 * can pick whatever unvisited node as the starting point.
98 */
99 if (!pos)
100 pos = root;
101 else
102 pos = cgroup_parent(pos);
103
104 /* walk down to the first leaf */
105 while (true) {
Tejun Heoc58632b2018-04-26 14:29:04 -0700106 rstatc = cgroup_rstat_cpu(pos, cpu);
107 if (rstatc->updated_children == pos)
Tejun Heo041cd642017-09-25 08:12:05 -0700108 break;
Tejun Heoc58632b2018-04-26 14:29:04 -0700109 pos = rstatc->updated_children;
Tejun Heo041cd642017-09-25 08:12:05 -0700110 }
111
112 /*
113 * Unlink @pos from the tree. As the updated_children list is
114 * singly linked, we have to walk it to find the removal point.
115 * However, due to the way we traverse, @pos will be the first
116 * child in most cases. The only exception is @root.
117 */
Tejun Heob4ff1b42019-02-15 11:01:31 -0800118 if (rstatc->updated_next) {
119 struct cgroup *parent = cgroup_parent(pos);
Tejun Heo041cd642017-09-25 08:12:05 -0700120
Johannes Weinerdc265322021-04-29 22:56:23 -0700121 if (parent) {
122 struct cgroup_rstat_cpu *prstatc;
123 struct cgroup **nextp;
Tejun Heo041cd642017-09-25 08:12:05 -0700124
Johannes Weinerdc265322021-04-29 22:56:23 -0700125 prstatc = cgroup_rstat_cpu(parent, cpu);
126 nextp = &prstatc->updated_children;
127 while (true) {
128 struct cgroup_rstat_cpu *nrstatc;
129
130 nrstatc = cgroup_rstat_cpu(*nextp, cpu);
131 if (*nextp == pos)
132 break;
133 WARN_ON_ONCE(*nextp == parent);
134 nextp = &nrstatc->updated_next;
135 }
136 *nextp = rstatc->updated_next;
Tejun Heo041cd642017-09-25 08:12:05 -0700137 }
138
Tejun Heoc58632b2018-04-26 14:29:04 -0700139 rstatc->updated_next = NULL;
Tejun Heob4ff1b42019-02-15 11:01:31 -0800140 return pos;
Tejun Heo041cd642017-09-25 08:12:05 -0700141 }
142
Tejun Heob4ff1b42019-02-15 11:01:31 -0800143 /* only happens for @root */
144 return NULL;
Tejun Heo041cd642017-09-25 08:12:05 -0700145}
146
Tejun Heoa17556f82018-04-26 14:29:05 -0700147/* see cgroup_rstat_flush() */
Tejun Heo0fa294f2018-04-26 14:29:05 -0700148static void cgroup_rstat_flush_locked(struct cgroup *cgrp, bool may_sleep)
149 __releases(&cgroup_rstat_lock) __acquires(&cgroup_rstat_lock)
Tejun Heoa17556f82018-04-26 14:29:05 -0700150{
151 int cpu;
152
Tejun Heo0fa294f2018-04-26 14:29:05 -0700153 lockdep_assert_held(&cgroup_rstat_lock);
Tejun Heoa17556f82018-04-26 14:29:05 -0700154
155 for_each_possible_cpu(cpu) {
156 raw_spinlock_t *cpu_lock = per_cpu_ptr(&cgroup_rstat_cpu_lock,
157 cpu);
158 struct cgroup *pos = NULL;
159
Tejun Heo0fa294f2018-04-26 14:29:05 -0700160 raw_spin_lock(cpu_lock);
Tejun Heo8f534702018-04-26 14:29:05 -0700161 while ((pos = cgroup_rstat_cpu_pop_updated(pos, cgrp, cpu))) {
162 struct cgroup_subsys_state *css;
163
Tejun Heoa17556f82018-04-26 14:29:05 -0700164 cgroup_base_stat_flush(pos, cpu);
Tejun Heo8f534702018-04-26 14:29:05 -0700165
166 rcu_read_lock();
167 list_for_each_entry_rcu(css, &pos->rstat_css_list,
168 rstat_css_node)
169 css->ss->css_rstat_flush(css, cpu);
170 rcu_read_unlock();
171 }
Tejun Heo0fa294f2018-04-26 14:29:05 -0700172 raw_spin_unlock(cpu_lock);
173
174 /* if @may_sleep, play nice and yield if necessary */
175 if (may_sleep && (need_resched() ||
176 spin_needbreak(&cgroup_rstat_lock))) {
177 spin_unlock_irq(&cgroup_rstat_lock);
178 if (!cond_resched())
179 cpu_relax();
180 spin_lock_irq(&cgroup_rstat_lock);
181 }
Tejun Heoa17556f82018-04-26 14:29:05 -0700182 }
183}
184
185/**
186 * cgroup_rstat_flush - flush stats in @cgrp's subtree
187 * @cgrp: target cgroup
188 *
189 * Collect all per-cpu stats in @cgrp's subtree into the global counters
190 * and propagate them upwards. After this function returns, all cgroups in
191 * the subtree have up-to-date ->stat.
192 *
193 * This also gets all cgroups in the subtree including @cgrp off the
194 * ->updated_children lists.
Tejun Heo0fa294f2018-04-26 14:29:05 -0700195 *
196 * This function may block.
Tejun Heoa17556f82018-04-26 14:29:05 -0700197 */
198void cgroup_rstat_flush(struct cgroup *cgrp)
199{
Tejun Heo0fa294f2018-04-26 14:29:05 -0700200 might_sleep();
201
202 spin_lock_irq(&cgroup_rstat_lock);
203 cgroup_rstat_flush_locked(cgrp, true);
204 spin_unlock_irq(&cgroup_rstat_lock);
205}
206
207/**
208 * cgroup_rstat_flush_irqsafe - irqsafe version of cgroup_rstat_flush()
209 * @cgrp: target cgroup
210 *
211 * This function can be called from any context.
212 */
213void cgroup_rstat_flush_irqsafe(struct cgroup *cgrp)
214{
215 unsigned long flags;
216
217 spin_lock_irqsave(&cgroup_rstat_lock, flags);
218 cgroup_rstat_flush_locked(cgrp, false);
219 spin_unlock_irqrestore(&cgroup_rstat_lock, flags);
Tejun Heoa17556f82018-04-26 14:29:05 -0700220}
221
Tejun Heo6162cef2018-04-26 14:29:05 -0700222/**
Yang Li2ca11b02021-05-26 10:49:09 +0800223 * cgroup_rstat_flush_hold - flush stats in @cgrp's subtree and hold
Tejun Heo6162cef2018-04-26 14:29:05 -0700224 * @cgrp: target cgroup
225 *
226 * Flush stats in @cgrp's subtree and prevent further flushes. Must be
227 * paired with cgroup_rstat_flush_release().
Tejun Heo0fa294f2018-04-26 14:29:05 -0700228 *
229 * This function may block.
Tejun Heo6162cef2018-04-26 14:29:05 -0700230 */
231void cgroup_rstat_flush_hold(struct cgroup *cgrp)
Tejun Heo0fa294f2018-04-26 14:29:05 -0700232 __acquires(&cgroup_rstat_lock)
Tejun Heo6162cef2018-04-26 14:29:05 -0700233{
Tejun Heo0fa294f2018-04-26 14:29:05 -0700234 might_sleep();
235 spin_lock_irq(&cgroup_rstat_lock);
236 cgroup_rstat_flush_locked(cgrp, true);
Tejun Heo6162cef2018-04-26 14:29:05 -0700237}
238
239/**
240 * cgroup_rstat_flush_release - release cgroup_rstat_flush_hold()
241 */
242void cgroup_rstat_flush_release(void)
Tejun Heo0fa294f2018-04-26 14:29:05 -0700243 __releases(&cgroup_rstat_lock)
Tejun Heo6162cef2018-04-26 14:29:05 -0700244{
Tejun Heo0fa294f2018-04-26 14:29:05 -0700245 spin_unlock_irq(&cgroup_rstat_lock);
Tejun Heo6162cef2018-04-26 14:29:05 -0700246}
247
Tejun Heoa17556f82018-04-26 14:29:05 -0700248int cgroup_rstat_init(struct cgroup *cgrp)
249{
250 int cpu;
251
252 /* the root cgrp has rstat_cpu preallocated */
253 if (!cgrp->rstat_cpu) {
254 cgrp->rstat_cpu = alloc_percpu(struct cgroup_rstat_cpu);
255 if (!cgrp->rstat_cpu)
256 return -ENOMEM;
257 }
258
259 /* ->updated_children list is self terminated */
260 for_each_possible_cpu(cpu) {
261 struct cgroup_rstat_cpu *rstatc = cgroup_rstat_cpu(cgrp, cpu);
262
263 rstatc->updated_children = cgrp;
264 u64_stats_init(&rstatc->bsync);
265 }
266
267 return 0;
268}
269
270void cgroup_rstat_exit(struct cgroup *cgrp)
271{
272 int cpu;
273
274 cgroup_rstat_flush(cgrp);
275
276 /* sanity check */
277 for_each_possible_cpu(cpu) {
278 struct cgroup_rstat_cpu *rstatc = cgroup_rstat_cpu(cgrp, cpu);
279
280 if (WARN_ON_ONCE(rstatc->updated_children != cgrp) ||
281 WARN_ON_ONCE(rstatc->updated_next))
282 return;
283 }
284
285 free_percpu(cgrp->rstat_cpu);
286 cgrp->rstat_cpu = NULL;
287}
288
289void __init cgroup_rstat_boot(void)
290{
291 int cpu;
292
293 for_each_possible_cpu(cpu)
294 raw_spin_lock_init(per_cpu_ptr(&cgroup_rstat_cpu_lock, cpu));
Tejun Heoa17556f82018-04-26 14:29:05 -0700295}
296
297/*
298 * Functions for cgroup basic resource statistics implemented on top of
299 * rstat.
300 */
Tejun Heo1bb5ec22019-11-06 12:49:57 -0800301static void cgroup_base_stat_add(struct cgroup_base_stat *dst_bstat,
302 struct cgroup_base_stat *src_bstat)
Tejun Heo041cd642017-09-25 08:12:05 -0700303{
Tejun Heod4ff7492018-04-26 14:29:04 -0700304 dst_bstat->cputime.utime += src_bstat->cputime.utime;
305 dst_bstat->cputime.stime += src_bstat->cputime.stime;
306 dst_bstat->cputime.sum_exec_runtime += src_bstat->cputime.sum_exec_runtime;
Tejun Heo041cd642017-09-25 08:12:05 -0700307}
308
Tejun Heo1bb5ec22019-11-06 12:49:57 -0800309static void cgroup_base_stat_sub(struct cgroup_base_stat *dst_bstat,
310 struct cgroup_base_stat *src_bstat)
311{
312 dst_bstat->cputime.utime -= src_bstat->cputime.utime;
313 dst_bstat->cputime.stime -= src_bstat->cputime.stime;
314 dst_bstat->cputime.sum_exec_runtime -= src_bstat->cputime.sum_exec_runtime;
315}
316
Tejun Heod4ff7492018-04-26 14:29:04 -0700317static void cgroup_base_stat_flush(struct cgroup *cgrp, int cpu)
Tejun Heo041cd642017-09-25 08:12:05 -0700318{
Tejun Heoc58632b2018-04-26 14:29:04 -0700319 struct cgroup_rstat_cpu *rstatc = cgroup_rstat_cpu(cgrp, cpu);
Johannes Weinerdc265322021-04-29 22:56:23 -0700320 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1bb5ec22019-11-06 12:49:57 -0800321 struct cgroup_base_stat cur, delta;
Tejun Heo041cd642017-09-25 08:12:05 -0700322 unsigned seq;
323
Johannes Weinerdc265322021-04-29 22:56:23 -0700324 /* Root-level stats are sourced from system-wide CPU stats */
325 if (!parent)
326 return;
327
Tejun Heo041cd642017-09-25 08:12:05 -0700328 /* fetch the current per-cpu values */
329 do {
Tejun Heod4ff7492018-04-26 14:29:04 -0700330 seq = __u64_stats_fetch_begin(&rstatc->bsync);
Tejun Heo1bb5ec22019-11-06 12:49:57 -0800331 cur.cputime = rstatc->bstat.cputime;
Tejun Heod4ff7492018-04-26 14:29:04 -0700332 } while (__u64_stats_fetch_retry(&rstatc->bsync, seq));
Tejun Heo041cd642017-09-25 08:12:05 -0700333
Tejun Heo1bb5ec22019-11-06 12:49:57 -0800334 /* propagate percpu delta to global */
335 delta = cur;
336 cgroup_base_stat_sub(&delta, &rstatc->last_bstat);
337 cgroup_base_stat_add(&cgrp->bstat, &delta);
338 cgroup_base_stat_add(&rstatc->last_bstat, &delta);
Tejun Heo041cd642017-09-25 08:12:05 -0700339
Johannes Weinerdc265322021-04-29 22:56:23 -0700340 /* propagate global delta to parent (unless that's root) */
341 if (cgroup_parent(parent)) {
Tejun Heo1bb5ec22019-11-06 12:49:57 -0800342 delta = cgrp->bstat;
343 cgroup_base_stat_sub(&delta, &cgrp->last_bstat);
344 cgroup_base_stat_add(&parent->bstat, &delta);
345 cgroup_base_stat_add(&cgrp->last_bstat, &delta);
346 }
Tejun Heo041cd642017-09-25 08:12:05 -0700347}
348
Tejun Heoc58632b2018-04-26 14:29:04 -0700349static struct cgroup_rstat_cpu *
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000350cgroup_base_stat_cputime_account_begin(struct cgroup *cgrp, unsigned long *flags)
Tejun Heo041cd642017-09-25 08:12:05 -0700351{
Tejun Heoc58632b2018-04-26 14:29:04 -0700352 struct cgroup_rstat_cpu *rstatc;
Tejun Heo041cd642017-09-25 08:12:05 -0700353
Tejun Heoc58632b2018-04-26 14:29:04 -0700354 rstatc = get_cpu_ptr(cgrp->rstat_cpu);
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000355 *flags = u64_stats_update_begin_irqsave(&rstatc->bsync);
Tejun Heoc58632b2018-04-26 14:29:04 -0700356 return rstatc;
Tejun Heo041cd642017-09-25 08:12:05 -0700357}
358
Tejun Heod4ff7492018-04-26 14:29:04 -0700359static void cgroup_base_stat_cputime_account_end(struct cgroup *cgrp,
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000360 struct cgroup_rstat_cpu *rstatc,
361 unsigned long flags)
Tejun Heo041cd642017-09-25 08:12:05 -0700362{
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000363 u64_stats_update_end_irqrestore(&rstatc->bsync, flags);
Tejun Heo6162cef2018-04-26 14:29:05 -0700364 cgroup_rstat_updated(cgrp, smp_processor_id());
Tejun Heoc58632b2018-04-26 14:29:04 -0700365 put_cpu_ptr(rstatc);
Tejun Heo041cd642017-09-25 08:12:05 -0700366}
367
368void __cgroup_account_cputime(struct cgroup *cgrp, u64 delta_exec)
369{
Tejun Heoc58632b2018-04-26 14:29:04 -0700370 struct cgroup_rstat_cpu *rstatc;
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000371 unsigned long flags;
Tejun Heo041cd642017-09-25 08:12:05 -0700372
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000373 rstatc = cgroup_base_stat_cputime_account_begin(cgrp, &flags);
Tejun Heod4ff7492018-04-26 14:29:04 -0700374 rstatc->bstat.cputime.sum_exec_runtime += delta_exec;
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000375 cgroup_base_stat_cputime_account_end(cgrp, rstatc, flags);
Tejun Heo041cd642017-09-25 08:12:05 -0700376}
377
378void __cgroup_account_cputime_field(struct cgroup *cgrp,
379 enum cpu_usage_stat index, u64 delta_exec)
380{
Tejun Heoc58632b2018-04-26 14:29:04 -0700381 struct cgroup_rstat_cpu *rstatc;
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000382 unsigned long flags;
Tejun Heo041cd642017-09-25 08:12:05 -0700383
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000384 rstatc = cgroup_base_stat_cputime_account_begin(cgrp, &flags);
Tejun Heo041cd642017-09-25 08:12:05 -0700385
386 switch (index) {
387 case CPUTIME_USER:
388 case CPUTIME_NICE:
Tejun Heod4ff7492018-04-26 14:29:04 -0700389 rstatc->bstat.cputime.utime += delta_exec;
Tejun Heo041cd642017-09-25 08:12:05 -0700390 break;
391 case CPUTIME_SYSTEM:
392 case CPUTIME_IRQ:
393 case CPUTIME_SOFTIRQ:
Tejun Heod4ff7492018-04-26 14:29:04 -0700394 rstatc->bstat.cputime.stime += delta_exec;
Tejun Heo041cd642017-09-25 08:12:05 -0700395 break;
396 default:
397 break;
398 }
399
Tejun Heoc3df5fb2021-07-27 13:12:20 -1000400 cgroup_base_stat_cputime_account_end(cgrp, rstatc, flags);
Tejun Heo041cd642017-09-25 08:12:05 -0700401}
402
Boris Burkov936f2a72020-05-27 14:43:19 -0700403/*
404 * compute the cputime for the root cgroup by getting the per cpu data
405 * at a global level, then categorizing the fields in a manner consistent
406 * with how it is done by __cgroup_account_cputime_field for each bit of
407 * cpu time attributed to a cgroup.
408 */
409static void root_cgroup_cputime(struct task_cputime *cputime)
410{
411 int i;
412
413 cputime->stime = 0;
414 cputime->utime = 0;
415 cputime->sum_exec_runtime = 0;
416 for_each_possible_cpu(i) {
417 struct kernel_cpustat kcpustat;
418 u64 *cpustat = kcpustat.cpustat;
419 u64 user = 0;
420 u64 sys = 0;
421
422 kcpustat_cpu_fetch(&kcpustat, i);
423
424 user += cpustat[CPUTIME_USER];
425 user += cpustat[CPUTIME_NICE];
426 cputime->utime += user;
427
428 sys += cpustat[CPUTIME_SYSTEM];
429 sys += cpustat[CPUTIME_IRQ];
430 sys += cpustat[CPUTIME_SOFTIRQ];
431 cputime->stime += sys;
432
433 cputime->sum_exec_runtime += user;
434 cputime->sum_exec_runtime += sys;
435 cputime->sum_exec_runtime += cpustat[CPUTIME_STEAL];
Boris Burkov936f2a72020-05-27 14:43:19 -0700436 }
437}
438
Tejun Heod4ff7492018-04-26 14:29:04 -0700439void cgroup_base_stat_cputime_show(struct seq_file *seq)
Tejun Heo041cd642017-09-25 08:12:05 -0700440{
441 struct cgroup *cgrp = seq_css(seq)->cgroup;
442 u64 usage, utime, stime;
Boris Burkov936f2a72020-05-27 14:43:19 -0700443 struct task_cputime cputime;
Tejun Heo041cd642017-09-25 08:12:05 -0700444
Boris Burkov936f2a72020-05-27 14:43:19 -0700445 if (cgroup_parent(cgrp)) {
446 cgroup_rstat_flush_hold(cgrp);
447 usage = cgrp->bstat.cputime.sum_exec_runtime;
448 cputime_adjust(&cgrp->bstat.cputime, &cgrp->prev_cputime,
449 &utime, &stime);
450 cgroup_rstat_flush_release();
451 } else {
452 root_cgroup_cputime(&cputime);
453 usage = cputime.sum_exec_runtime;
454 utime = cputime.utime;
455 stime = cputime.stime;
456 }
Tejun Heo041cd642017-09-25 08:12:05 -0700457
458 do_div(usage, NSEC_PER_USEC);
459 do_div(utime, NSEC_PER_USEC);
460 do_div(stime, NSEC_PER_USEC);
461
Tejun Heod41bf8c2017-10-23 16:18:27 -0700462 seq_printf(seq, "usage_usec %llu\n"
463 "user_usec %llu\n"
464 "system_usec %llu\n",
465 usage, utime, stime);
Tejun Heo041cd642017-09-25 08:12:05 -0700466}