blob: 0bdef50d88bc4bc5b1d46bcff3f5b646b1ed777f [file] [log] [blame]
Frederic Weisbecker73fbec62012-06-16 15:57:37 +02001#include <linux/export.h>
2#include <linux/sched.h>
3#include <linux/tsacct_kern.h>
4#include <linux/kernel_stat.h>
5#include <linux/static_key.h>
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +02006#include <linux/context_tracking.h>
Frederic Weisbecker73fbec62012-06-16 15:57:37 +02007#include "sched.h"
Stefano Stabellini1fe7c4e2015-11-10 12:36:46 +00008#ifdef CONFIG_PARAVIRT
9#include <asm/paravirt.h>
10#endif
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020011
12
13#ifdef CONFIG_IRQ_TIME_ACCOUNTING
14
15/*
16 * There are no locks covering percpu hardirq/softirq time.
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +020017 * They are only modified in vtime_account, on corresponding CPU
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020018 * with interrupts disabled. So, writes are safe.
19 * They are read and saved off onto struct rq in update_rq_clock().
20 * This may result in other CPU reading this CPU's irq time and can
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +020021 * race with irq/vtime_account on this CPU. We would either get old
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020022 * or new value with a side effect of accounting a slice of irq time to wrong
23 * task when irq is in progress while we read rq->clock. That is a worthy
24 * compromise in place of having locks on each irq in account_system_time.
25 */
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020026DEFINE_PER_CPU(struct irqtime, cpu_irqtime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020027
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020028static int sched_clock_irqtime;
29
30void enable_sched_clock_irqtime(void)
31{
32 sched_clock_irqtime = 1;
33}
34
35void disable_sched_clock_irqtime(void)
36{
37 sched_clock_irqtime = 0;
38}
39
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020040/*
41 * Called before incrementing preempt_count on {soft,}irq_enter
42 * and before decrementing preempt_count on {soft,}irq_exit.
43 */
Frederic Weisbecker3e1df4f52012-10-06 05:23:22 +020044void irqtime_account_irq(struct task_struct *curr)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020045{
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020046 struct irqtime *irqtime = this_cpu_ptr(&cpu_irqtime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020047 s64 delta;
48 int cpu;
49
50 if (!sched_clock_irqtime)
51 return;
52
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020053 cpu = smp_processor_id();
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020054 delta = sched_clock_cpu(cpu) - irqtime->irq_start_time;
55 irqtime->irq_start_time += delta;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020056
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020057 u64_stats_update_begin(&irqtime->sync);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020058 /*
59 * We do not account for softirq time from ksoftirqd here.
60 * We want to continue accounting softirq time to ksoftirqd thread
61 * in that case, so as not to confuse scheduler with a special task
62 * that do not consume any time, but still wants to run.
63 */
64 if (hardirq_count())
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020065 irqtime->hardirq_time += delta;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020066 else if (in_serving_softirq() && curr != this_cpu_ksoftirqd())
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020067 irqtime->softirq_time += delta;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020068
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020069 u64_stats_update_end(&irqtime->sync);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020070}
Frederic Weisbecker3e1df4f52012-10-06 05:23:22 +020071EXPORT_SYMBOL_GPL(irqtime_account_irq);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020072
Frederic Weisbecker447976e2016-09-26 02:29:21 +020073static cputime_t irqtime_account_update(u64 irqtime, int idx, cputime_t maxtime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020074{
75 u64 *cpustat = kcpustat_this_cpu->cpustat;
Rik van Riel57430212016-07-13 16:50:01 +020076 cputime_t irq_cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020077
Frederic Weisbecker7fb13272017-01-31 04:09:19 +010078 irq_cputime = nsecs_to_cputime64(irqtime - cpustat[idx]);
Rik van Riel57430212016-07-13 16:50:01 +020079 irq_cputime = min(irq_cputime, maxtime);
Frederic Weisbecker7fb13272017-01-31 04:09:19 +010080 cpustat[idx] += cputime_to_nsecs(irq_cputime);
Frederic Weisbecker2810f612016-09-26 02:29:18 +020081
Rik van Riel57430212016-07-13 16:50:01 +020082 return irq_cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020083}
84
Frederic Weisbecker447976e2016-09-26 02:29:21 +020085static cputime_t irqtime_account_hi_update(cputime_t maxtime)
86{
87 return irqtime_account_update(__this_cpu_read(cpu_irqtime.hardirq_time),
88 CPUTIME_IRQ, maxtime);
89}
90
Rik van Riel57430212016-07-13 16:50:01 +020091static cputime_t irqtime_account_si_update(cputime_t maxtime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020092{
Frederic Weisbecker447976e2016-09-26 02:29:21 +020093 return irqtime_account_update(__this_cpu_read(cpu_irqtime.softirq_time),
94 CPUTIME_SOFTIRQ, maxtime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020095}
96
97#else /* CONFIG_IRQ_TIME_ACCOUNTING */
98
99#define sched_clock_irqtime (0)
100
Rik van Riel57430212016-07-13 16:50:01 +0200101static cputime_t irqtime_account_hi_update(cputime_t dummy)
102{
103 return 0;
104}
105
106static cputime_t irqtime_account_si_update(cputime_t dummy)
107{
108 return 0;
109}
110
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200111#endif /* !CONFIG_IRQ_TIME_ACCOUNTING */
112
113static inline void task_group_account_field(struct task_struct *p, int index,
114 u64 tmp)
115{
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200116 /*
117 * Since all updates are sure to touch the root cgroup, we
118 * get ourselves ahead and touch it first. If the root cgroup
119 * is the only cgroup, then nothing else should be necessary.
120 *
121 */
Christoph Lametera4f61cc2013-08-07 15:38:24 +0000122 __this_cpu_add(kernel_cpustat.cpustat[index], tmp);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200123
Li Zefan1966aaf2013-03-29 14:37:06 +0800124 cpuacct_account_field(p, index, tmp);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200125}
126
127/*
128 * Account user cpu time to a process.
129 * @p: the process that the cpu time gets accounted to
130 * @cputime: the cpu time spent in user space since the last update
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200131 */
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100132void account_user_time(struct task_struct *p, cputime_t cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200133{
134 int index;
135
136 /* Add user time to process. */
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100137 p->utime += cputime_to_nsecs(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200138 account_group_user_time(p, cputime);
139
Dongsheng Yangd0ea0262014-01-27 22:00:45 -0500140 index = (task_nice(p) > 0) ? CPUTIME_NICE : CPUTIME_USER;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200141
142 /* Add user time to cpustat. */
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100143 task_group_account_field(p, index, cputime_to_nsecs(cputime));
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200144
145 /* Account for user time used */
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100146 acct_account_cputime(p);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200147}
148
149/*
150 * Account guest cpu time to a process.
151 * @p: the process that the cpu time gets accounted to
152 * @cputime: the cpu time spent in virtual machine since the last update
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200153 */
Frederic Weisbecker12136992017-01-05 18:11:44 +0100154void account_guest_time(struct task_struct *p, cputime_t cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200155{
156 u64 *cpustat = kcpustat_this_cpu->cpustat;
157
158 /* Add guest time to process. */
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100159 p->utime += cputime_to_nsecs(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200160 account_group_user_time(p, cputime);
Frederic Weisbecker16a6d9b2017-01-31 04:09:21 +0100161 p->gtime += cputime_to_nsecs(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200162
163 /* Add guest time to cpustat. */
Dongsheng Yangd0ea0262014-01-27 22:00:45 -0500164 if (task_nice(p) > 0) {
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100165 cpustat[CPUTIME_NICE] += cputime_to_nsecs(cputime);
166 cpustat[CPUTIME_GUEST_NICE] += cputime_to_nsecs(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200167 } else {
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100168 cpustat[CPUTIME_USER] += cputime_to_nsecs(cputime);
169 cpustat[CPUTIME_GUEST] += cputime_to_nsecs(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200170 }
171}
172
173/*
174 * Account system cpu time to a process and desired cpustat field
175 * @p: the process that the cpu time gets accounted to
176 * @cputime: the cpu time spent in kernel space since the last update
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100177 * @index: pointer to cpustat field that has to be updated
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200178 */
Frederic Weisbeckerc31cc6a2017-01-05 18:11:43 +0100179void account_system_index_time(struct task_struct *p,
180 cputime_t cputime, enum cpu_usage_stat index)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200181{
182 /* Add system time to process. */
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100183 p->stime += cputime_to_nsecs(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200184 account_group_system_time(p, cputime);
185
186 /* Add system time to cpustat. */
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100187 task_group_account_field(p, index, cputime_to_nsecs(cputime));
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200188
189 /* Account for system time used */
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100190 acct_account_cputime(p);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200191}
192
193/*
194 * Account system cpu time to a process.
195 * @p: the process that the cpu time gets accounted to
196 * @hardirq_offset: the offset to subtract from hardirq_count()
197 * @cputime: the cpu time spent in kernel space since the last update
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200198 */
199void account_system_time(struct task_struct *p, int hardirq_offset,
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100200 cputime_t cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200201{
202 int index;
203
204 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100205 account_guest_time(p, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200206 return;
207 }
208
209 if (hardirq_count() - hardirq_offset)
210 index = CPUTIME_IRQ;
211 else if (in_serving_softirq())
212 index = CPUTIME_SOFTIRQ;
213 else
214 index = CPUTIME_SYSTEM;
215
Frederic Weisbeckerc31cc6a2017-01-05 18:11:43 +0100216 account_system_index_time(p, cputime, index);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200217}
218
219/*
220 * Account for involuntary wait time.
221 * @cputime: the cpu time spent in involuntary wait
222 */
223void account_steal_time(cputime_t cputime)
224{
225 u64 *cpustat = kcpustat_this_cpu->cpustat;
226
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100227 cpustat[CPUTIME_STEAL] += cputime_to_nsecs(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200228}
229
230/*
231 * Account for idle time.
232 * @cputime: the cpu time spent in idle wait
233 */
234void account_idle_time(cputime_t cputime)
235{
236 u64 *cpustat = kcpustat_this_cpu->cpustat;
237 struct rq *rq = this_rq();
238
239 if (atomic_read(&rq->nr_iowait) > 0)
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100240 cpustat[CPUTIME_IOWAIT] += cputime_to_nsecs(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200241 else
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100242 cpustat[CPUTIME_IDLE] += cputime_to_nsecs(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200243}
244
Wanpeng Li03cbc732016-08-17 10:05:46 +0800245/*
246 * When a guest is interrupted for a longer amount of time, missed clock
247 * ticks are not redelivered later. Due to that, this function may on
248 * occasion account more time than the calling functions think elapsed.
249 */
Rik van Riel57430212016-07-13 16:50:01 +0200250static __always_inline cputime_t steal_account_process_time(cputime_t maxtime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200251{
252#ifdef CONFIG_PARAVIRT
253 if (static_key_false(&paravirt_steal_enabled)) {
Rik van Riel57430212016-07-13 16:50:01 +0200254 cputime_t steal_cputime;
Frederic Weisbeckerdee08a72014-03-05 17:02:22 +0100255 u64 steal;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200256
257 steal = paravirt_steal_clock(smp_processor_id());
258 steal -= this_rq()->prev_steal_time;
259
Rik van Riel57430212016-07-13 16:50:01 +0200260 steal_cputime = min(nsecs_to_cputime(steal), maxtime);
261 account_steal_time(steal_cputime);
262 this_rq()->prev_steal_time += cputime_to_nsecs(steal_cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200263
Rik van Riel57430212016-07-13 16:50:01 +0200264 return steal_cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200265 }
266#endif
Wanpeng Li807e5b82016-06-13 18:32:46 +0800267 return 0;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200268}
269
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100270/*
Rik van Riel57430212016-07-13 16:50:01 +0200271 * Account how much elapsed time was spent in steal, irq, or softirq time.
272 */
273static inline cputime_t account_other_time(cputime_t max)
274{
275 cputime_t accounted;
276
Frederic Weisbecker2810f612016-09-26 02:29:18 +0200277 /* Shall be converted to a lockdep-enabled lightweight check */
278 WARN_ON_ONCE(!irqs_disabled());
279
Rik van Riel57430212016-07-13 16:50:01 +0200280 accounted = steal_account_process_time(max);
281
282 if (accounted < max)
283 accounted += irqtime_account_hi_update(max - accounted);
284
285 if (accounted < max)
286 accounted += irqtime_account_si_update(max - accounted);
287
288 return accounted;
289}
290
Stanislaw Gruszkaa1eb1412016-08-17 11:30:44 +0200291#ifdef CONFIG_64BIT
292static inline u64 read_sum_exec_runtime(struct task_struct *t)
293{
294 return t->se.sum_exec_runtime;
295}
296#else
297static u64 read_sum_exec_runtime(struct task_struct *t)
298{
299 u64 ns;
300 struct rq_flags rf;
301 struct rq *rq;
302
303 rq = task_rq_lock(t, &rf);
304 ns = t->se.sum_exec_runtime;
305 task_rq_unlock(rq, t, &rf);
306
307 return ns;
308}
309#endif
310
Rik van Riel57430212016-07-13 16:50:01 +0200311/*
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100312 * Accumulate raw cputime values of dead tasks (sig->[us]time) and live
313 * tasks (sum on group iteration) belonging to @tsk's group.
314 */
315void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times)
316{
317 struct signal_struct *sig = tsk->signal;
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100318 u64 utime, stime;
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100319 struct task_struct *t;
Rik van Riele78c3492014-08-16 13:40:10 -0400320 unsigned int seq, nextseq;
Rik van Riel9c368b52014-09-12 09:12:15 -0400321 unsigned long flags;
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100322
Stanislaw Gruszkaa1eb1412016-08-17 11:30:44 +0200323 /*
324 * Update current task runtime to account pending time since last
325 * scheduler action or thread_group_cputime() call. This thread group
326 * might have other running tasks on different CPUs, but updating
327 * their runtime can affect syscall performance, so we skip account
328 * those pending times and rely only on values updated on tick or
329 * other scheduler action.
330 */
331 if (same_thread_group(current, tsk))
332 (void) task_sched_runtime(current);
333
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100334 rcu_read_lock();
Rik van Riele78c3492014-08-16 13:40:10 -0400335 /* Attempt a lockless read on the first round. */
336 nextseq = 0;
337 do {
338 seq = nextseq;
Rik van Riel9c368b52014-09-12 09:12:15 -0400339 flags = read_seqbegin_or_lock_irqsave(&sig->stats_lock, &seq);
Rik van Riele78c3492014-08-16 13:40:10 -0400340 times->utime = sig->utime;
341 times->stime = sig->stime;
342 times->sum_exec_runtime = sig->sum_sched_runtime;
343
344 for_each_thread(tsk, t) {
345 task_cputime(t, &utime, &stime);
346 times->utime += utime;
347 times->stime += stime;
Stanislaw Gruszkaa1eb1412016-08-17 11:30:44 +0200348 times->sum_exec_runtime += read_sum_exec_runtime(t);
Rik van Riele78c3492014-08-16 13:40:10 -0400349 }
350 /* If lockless access failed, take the lock. */
351 nextseq = 1;
352 } while (need_seqretry(&sig->stats_lock, seq));
Rik van Riel9c368b52014-09-12 09:12:15 -0400353 done_seqretry_irqrestore(&sig->stats_lock, seq, flags);
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100354 rcu_read_unlock();
355}
356
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200357#ifdef CONFIG_IRQ_TIME_ACCOUNTING
358/*
359 * Account a tick to a process and cpustat
360 * @p: the process that the cpu time gets accounted to
361 * @user_tick: is the tick from userspace
362 * @rq: the pointer to rq
363 *
364 * Tick demultiplexing follows the order
365 * - pending hardirq update
366 * - pending softirq update
367 * - user_time
368 * - idle_time
369 * - system time
370 * - check for guest_time
371 * - else account as system_time
372 *
373 * Check for hardirq is done both for system and user time as there is
374 * no timer going off while we are on hardirq and hence we may never get an
375 * opportunity to update it solely in system time.
376 * p->stime and friends are only updated on system time and not on irq
377 * softirq as those do not count in task exec_runtime any more.
378 */
379static void irqtime_account_process_tick(struct task_struct *p, int user_tick,
Thomas Gleixner2d513862014-05-02 23:26:24 +0200380 struct rq *rq, int ticks)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200381{
Rik van Riel57430212016-07-13 16:50:01 +0200382 u64 cputime = (__force u64) cputime_one_jiffy * ticks;
Stanislaw Gruszka981ee2d2016-11-15 03:06:50 +0100383 cputime_t other;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200384
Rik van Riel57430212016-07-13 16:50:01 +0200385 /*
386 * When returning from idle, many ticks can get accounted at
387 * once, including some ticks of steal, irq, and softirq time.
388 * Subtract those ticks from the amount of time accounted to
389 * idle, or potentially user or system time. Due to rounding,
390 * other time can exceed ticks occasionally.
391 */
Wanpeng Li03cbc732016-08-17 10:05:46 +0800392 other = account_other_time(ULONG_MAX);
Rik van Riel57430212016-07-13 16:50:01 +0200393 if (other >= cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200394 return;
Rik van Riel57430212016-07-13 16:50:01 +0200395 cputime -= other;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200396
Rik van Riel57430212016-07-13 16:50:01 +0200397 if (this_cpu_ksoftirqd() == p) {
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200398 /*
399 * ksoftirqd time do not get accounted in cpu_softirq_time.
400 * So, we have to handle it separately here.
401 * Also, p->stime needs to be updated for ksoftirqd.
402 */
Frederic Weisbeckerc31cc6a2017-01-05 18:11:43 +0100403 account_system_index_time(p, cputime, CPUTIME_SOFTIRQ);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200404 } else if (user_tick) {
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100405 account_user_time(p, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200406 } else if (p == rq->idle) {
Thomas Gleixner2d513862014-05-02 23:26:24 +0200407 account_idle_time(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200408 } else if (p->flags & PF_VCPU) { /* System time or guest time */
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100409 account_guest_time(p, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200410 } else {
Frederic Weisbeckerc31cc6a2017-01-05 18:11:43 +0100411 account_system_index_time(p, cputime, CPUTIME_SYSTEM);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200412 }
413}
414
415static void irqtime_account_idle_ticks(int ticks)
416{
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200417 struct rq *rq = this_rq();
418
Thomas Gleixner2d513862014-05-02 23:26:24 +0200419 irqtime_account_process_tick(current, 0, rq, ticks);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200420}
421#else /* CONFIG_IRQ_TIME_ACCOUNTING */
Frederic Weisbecker3f4724e2012-07-16 18:00:34 +0200422static inline void irqtime_account_idle_ticks(int ticks) {}
423static inline void irqtime_account_process_tick(struct task_struct *p, int user_tick,
Thomas Gleixner2d513862014-05-02 23:26:24 +0200424 struct rq *rq, int nr_ticks) {}
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200425#endif /* CONFIG_IRQ_TIME_ACCOUNTING */
426
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200427/*
428 * Use precise platform statistics if available:
429 */
430#ifdef CONFIG_VIRT_CPU_ACCOUNTING
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200431
Frederic Weisbeckere3942ba2012-11-14 00:24:25 +0100432#ifndef __ARCH_HAS_VTIME_TASK_SWITCH
Frederic Weisbeckerb0493402013-07-12 03:10:15 +0200433void vtime_common_task_switch(struct task_struct *prev)
Frederic Weisbeckere3942ba2012-11-14 00:24:25 +0100434{
435 if (is_idle_task(prev))
436 vtime_account_idle(prev);
437 else
438 vtime_account_system(prev);
439
Frederic Weisbeckerc8d7dab2017-01-05 18:11:50 +0100440 vtime_flush(prev);
Frederic Weisbeckere3942ba2012-11-14 00:24:25 +0100441 arch_vtime_task_switch(prev);
442}
443#endif
Frederic Weisbecker11113332012-10-24 18:05:51 +0200444
Frederic Weisbecker0cfdf9a2016-07-13 16:50:03 +0200445#endif /* CONFIG_VIRT_CPU_ACCOUNTING */
446
447
448#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200449/*
450 * Archs that account the whole time spent in the idle task
451 * (outside irq) as idle time can rely on this and just implement
Frederic Weisbeckerfd25b4c2012-11-13 18:21:22 +0100452 * vtime_account_system() and vtime_account_idle(). Archs that
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200453 * have other meaning of the idle time (s390 only includes the
454 * time spent by the CPU when it's in low power mode) must override
455 * vtime_account().
456 */
457#ifndef __ARCH_HAS_VTIME_ACCOUNT
Frederic Weisbecker0cfdf9a2016-07-13 16:50:03 +0200458void vtime_account_irq_enter(struct task_struct *tsk)
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200459{
Frederic Weisbecker0cfdf9a2016-07-13 16:50:03 +0200460 if (!in_interrupt() && is_idle_task(tsk))
461 vtime_account_idle(tsk);
462 else
463 vtime_account_system(tsk);
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200464}
Frederic Weisbecker0cfdf9a2016-07-13 16:50:03 +0200465EXPORT_SYMBOL_GPL(vtime_account_irq_enter);
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200466#endif /* __ARCH_HAS_VTIME_ACCOUNT */
467
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100468void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200469{
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100470 *ut = p->utime;
471 *st = p->stime;
472}
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300473EXPORT_SYMBOL_GPL(task_cputime_adjusted);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200474
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100475void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st)
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100476{
477 struct task_cputime cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200478
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100479 thread_group_cputime(p, &cputime);
480
481 *ut = cputime.utime;
482 *st = cputime.stime;
483}
484#else /* !CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
485/*
486 * Account a single tick of cpu time.
487 * @p: the process that the cpu time gets accounted to
488 * @user_tick: indicates if the tick is a user or a system tick
489 */
490void account_process_tick(struct task_struct *p, int user_tick)
491{
Stanislaw Gruszka981ee2d2016-11-15 03:06:50 +0100492 cputime_t cputime, steal;
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100493 struct rq *rq = this_rq();
494
Frederic Weisbecker55dbdcf2015-11-19 16:47:32 +0100495 if (vtime_accounting_cpu_enabled())
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100496 return;
497
498 if (sched_clock_irqtime) {
Thomas Gleixner2d513862014-05-02 23:26:24 +0200499 irqtime_account_process_tick(p, user_tick, rq, 1);
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100500 return;
501 }
502
Rik van Riel57430212016-07-13 16:50:01 +0200503 cputime = cputime_one_jiffy;
Wanpeng Li03cbc732016-08-17 10:05:46 +0800504 steal = steal_account_process_time(ULONG_MAX);
Rik van Riel57430212016-07-13 16:50:01 +0200505
506 if (steal >= cputime)
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100507 return;
508
Rik van Riel57430212016-07-13 16:50:01 +0200509 cputime -= steal;
Rik van Riel57430212016-07-13 16:50:01 +0200510
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100511 if (user_tick)
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100512 account_user_time(p, cputime);
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100513 else if ((p != rq->idle) || (irq_count() != HARDIRQ_OFFSET))
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100514 account_system_time(p, HARDIRQ_OFFSET, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200515 else
Rik van Riel57430212016-07-13 16:50:01 +0200516 account_idle_time(cputime);
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100517}
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200518
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100519/*
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100520 * Account multiple ticks of idle time.
521 * @ticks: number of stolen ticks
522 */
523void account_idle_ticks(unsigned long ticks)
524{
Wanpeng Lif9bcf1e2016-08-11 13:36:35 +0800525 cputime_t cputime, steal;
Frederic Weisbecker26f2c752016-08-11 14:58:24 +0200526
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100527 if (sched_clock_irqtime) {
528 irqtime_account_idle_ticks(ticks);
529 return;
530 }
531
Frederic Weisbecker26f2c752016-08-11 14:58:24 +0200532 cputime = jiffies_to_cputime(ticks);
Wanpeng Li03cbc732016-08-17 10:05:46 +0800533 steal = steal_account_process_time(ULONG_MAX);
Wanpeng Lif9bcf1e2016-08-11 13:36:35 +0800534
535 if (steal >= cputime)
536 return;
537
538 cputime -= steal;
539 account_idle_time(cputime);
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100540}
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200541
Frederic Weisbeckerd9a3c982013-02-20 18:54:55 +0100542/*
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200543 * Perform (stime * rtime) / total, but avoid multiplication overflow by
544 * loosing precision when the numbers are big.
Frederic Weisbeckerd9a3c982013-02-20 18:54:55 +0100545 */
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100546static u64 scale_stime(u64 stime, u64 rtime, u64 total)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200547{
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200548 u64 scaled;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200549
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200550 for (;;) {
551 /* Make sure "rtime" is the bigger of stime/rtime */
Stanislaw Gruszka84f9f3a2013-05-02 15:34:33 +0200552 if (stime > rtime)
553 swap(rtime, stime);
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200554
555 /* Make sure 'total' fits in 32 bits */
556 if (total >> 32)
557 goto drop_precision;
558
559 /* Does rtime (and thus stime) fit in 32 bits? */
560 if (!(rtime >> 32))
561 break;
562
563 /* Can we just balance rtime/stime rather than dropping bits? */
564 if (stime >> 31)
565 goto drop_precision;
566
567 /* We can grow stime and shrink rtime and try to make them both fit */
568 stime <<= 1;
569 rtime >>= 1;
570 continue;
571
572drop_precision:
573 /* We drop from rtime, it has more bits than stime */
574 rtime >>= 1;
575 total >>= 1;
Frederic Weisbeckerd9a3c982013-02-20 18:54:55 +0100576 }
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200577
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200578 /*
579 * Make sure gcc understands that this is a 32x32->64 multiply,
580 * followed by a 64/32->64 divide.
581 */
582 scaled = div_u64((u64) (u32) stime * (u64) (u32) rtime, (u32)total);
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100583 return scaled;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200584}
585
Frederic Weisbeckerfa092052012-11-28 17:00:57 +0100586/*
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200587 * Adjust tick based cputime random precision against scheduler runtime
588 * accounting.
Rik van Riel347abad2014-09-30 15:59:47 -0400589 *
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200590 * Tick based cputime accounting depend on random scheduling timeslices of a
591 * task to be interrupted or not by the timer. Depending on these
592 * circumstances, the number of these interrupts may be over or
593 * under-optimistic, matching the real user and system cputime with a variable
594 * precision.
595 *
596 * Fix this by scaling these tick based values against the total runtime
597 * accounted by the CFS scheduler.
598 *
599 * This code provides the following guarantees:
600 *
601 * stime + utime == rtime
602 * stime_i+1 >= stime_i, utime_i+1 >= utime_i
603 *
604 * Assuming that rtime_i+1 >= rtime_i.
Frederic Weisbeckerfa092052012-11-28 17:00:57 +0100605 */
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100606static void cputime_adjust(struct task_cputime *curr,
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200607 struct prev_cputime *prev,
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100608 u64 *ut, u64 *st)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200609{
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100610 u64 rtime, stime, utime;
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200611 unsigned long flags;
Frederic Weisbeckerfa092052012-11-28 17:00:57 +0100612
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200613 /* Serialize concurrent callers such that we can honour our guarantees */
614 raw_spin_lock_irqsave(&prev->lock, flags);
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100615 rtime = curr->sum_exec_runtime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200616
Stanislaw Gruszka772c8082013-04-30 11:35:05 +0200617 /*
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200618 * This is possible under two circumstances:
619 * - rtime isn't monotonic after all (a bug);
620 * - we got reordered by the lock.
621 *
622 * In both cases this acts as a filter such that the rest of the code
623 * can assume it is monotonic regardless of anything else.
Stanislaw Gruszka772c8082013-04-30 11:35:05 +0200624 */
625 if (prev->stime + prev->utime >= rtime)
626 goto out;
627
Stanislaw Gruszka5a8e01f2013-09-04 15:16:03 +0200628 stime = curr->stime;
629 utime = curr->utime;
630
Peter Zijlstra173be9a2016-08-15 18:38:42 +0200631 /*
632 * If either stime or both stime and utime are 0, assume all runtime is
633 * userspace. Once a task gets some ticks, the monotonicy code at
634 * 'update' will ensure things converge to the observed ratio.
635 */
636 if (stime == 0) {
637 utime = rtime;
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200638 goto update;
Frederic Weisbeckerd9a3c982013-02-20 18:54:55 +0100639 }
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200640
Peter Zijlstra173be9a2016-08-15 18:38:42 +0200641 if (utime == 0) {
642 stime = rtime;
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200643 goto update;
644 }
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200645
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100646 stime = scale_stime(stime, rtime, stime + utime);
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200647
Peter Zijlstra173be9a2016-08-15 18:38:42 +0200648update:
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200649 /*
650 * Make sure stime doesn't go backwards; this preserves monotonicity
651 * for utime because rtime is monotonic.
652 *
653 * utime_i+1 = rtime_i+1 - stime_i
654 * = rtime_i+1 - (rtime_i - utime_i)
655 * = (rtime_i+1 - rtime_i) + utime_i
656 * >= utime_i
657 */
658 if (stime < prev->stime)
659 stime = prev->stime;
660 utime = rtime - stime;
661
662 /*
663 * Make sure utime doesn't go backwards; this still preserves
664 * monotonicity for stime, analogous argument to above.
665 */
666 if (utime < prev->utime) {
667 utime = prev->utime;
668 stime = rtime - utime;
669 }
670
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200671 prev->stime = stime;
672 prev->utime = utime;
Stanislaw Gruszka772c8082013-04-30 11:35:05 +0200673out:
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100674 *ut = prev->utime;
675 *st = prev->stime;
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200676 raw_spin_unlock_irqrestore(&prev->lock, flags);
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100677}
678
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100679void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st)
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100680{
681 struct task_cputime cputime = {
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100682 .sum_exec_runtime = p->se.sum_exec_runtime,
683 };
684
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100685 task_cputime(p, &cputime.utime, &cputime.stime);
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100686 cputime_adjust(&cputime, &p->prev_cputime, ut, st);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200687}
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300688EXPORT_SYMBOL_GPL(task_cputime_adjusted);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200689
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100690void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200691{
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200692 struct task_cputime cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200693
694 thread_group_cputime(p, &cputime);
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100695 cputime_adjust(&cputime, &p->signal->prev_cputime, ut, st);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200696}
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100697#endif /* !CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200698
699#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
Rik van Rielff9a9b42016-02-10 20:08:27 -0500700static cputime_t vtime_delta(struct task_struct *tsk)
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200701{
Rik van Rielff9a9b42016-02-10 20:08:27 -0500702 unsigned long now = READ_ONCE(jiffies);
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200703
Rik van Rielff9a9b42016-02-10 20:08:27 -0500704 if (time_before(now, (unsigned long)tsk->vtime_snap))
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100705 return 0;
706
Rik van Rielff9a9b42016-02-10 20:08:27 -0500707 return jiffies_to_cputime(now - tsk->vtime_snap);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100708}
709
710static cputime_t get_vtime_delta(struct task_struct *tsk)
711{
Rik van Rielff9a9b42016-02-10 20:08:27 -0500712 unsigned long now = READ_ONCE(jiffies);
Rik van Rielb58c3582016-07-13 16:50:02 +0200713 cputime_t delta, other;
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100714
Wanpeng Li03cbc732016-08-17 10:05:46 +0800715 /*
716 * Unlike tick based timing, vtime based timing never has lost
717 * ticks, and no need for steal time accounting to make up for
718 * lost ticks. Vtime accounts a rounded version of actual
719 * elapsed time. Limit account_other_time to prevent rounding
720 * errors from causing elapsed vtime to go negative.
721 */
Rik van Riel57430212016-07-13 16:50:01 +0200722 delta = jiffies_to_cputime(now - tsk->vtime_snap);
Rik van Rielb58c3582016-07-13 16:50:02 +0200723 other = account_other_time(delta);
Frederic Weisbecker7098c1e2015-11-19 16:47:30 +0100724 WARN_ON_ONCE(tsk->vtime_snap_whence == VTIME_INACTIVE);
Rik van Rielff9a9b42016-02-10 20:08:27 -0500725 tsk->vtime_snap = now;
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200726
Rik van Rielb58c3582016-07-13 16:50:02 +0200727 return delta - other;
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200728}
729
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100730static void __vtime_account_system(struct task_struct *tsk)
731{
732 cputime_t delta_cpu = get_vtime_delta(tsk);
733
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100734 account_system_time(tsk, irq_count(), delta_cpu);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100735}
736
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200737void vtime_account_system(struct task_struct *tsk)
738{
Rik van Rielff9a9b42016-02-10 20:08:27 -0500739 if (!vtime_delta(tsk))
740 return;
741
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100742 write_seqcount_begin(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100743 __vtime_account_system(tsk);
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100744 write_seqcount_end(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100745}
746
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200747void vtime_account_user(struct task_struct *tsk)
748{
Frederic Weisbecker3f4724e2012-07-16 18:00:34 +0200749 cputime_t delta_cpu;
750
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100751 write_seqcount_begin(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100752 tsk->vtime_snap_whence = VTIME_SYS;
Rik van Rielff9a9b42016-02-10 20:08:27 -0500753 if (vtime_delta(tsk)) {
754 delta_cpu = get_vtime_delta(tsk);
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100755 account_user_time(tsk, delta_cpu);
Rik van Rielff9a9b42016-02-10 20:08:27 -0500756 }
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100757 write_seqcount_end(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100758}
759
760void vtime_user_enter(struct task_struct *tsk)
761{
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100762 write_seqcount_begin(&tsk->vtime_seqcount);
Rik van Rielff9a9b42016-02-10 20:08:27 -0500763 if (vtime_delta(tsk))
764 __vtime_account_system(tsk);
Frederic Weisbeckeraf2350b2013-07-15 16:35:55 +0200765 tsk->vtime_snap_whence = VTIME_USER;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100766 write_seqcount_end(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100767}
768
769void vtime_guest_enter(struct task_struct *tsk)
770{
Frederic Weisbecker5b206d42013-07-12 19:05:14 +0200771 /*
772 * The flags must be updated under the lock with
773 * the vtime_snap flush and update.
774 * That enforces a right ordering and update sequence
775 * synchronization against the reader (task_gtime())
776 * that can thus safely catch up with a tickless delta.
777 */
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100778 write_seqcount_begin(&tsk->vtime_seqcount);
Rik van Rielff9a9b42016-02-10 20:08:27 -0500779 if (vtime_delta(tsk))
780 __vtime_account_system(tsk);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100781 current->flags |= PF_VCPU;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100782 write_seqcount_end(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100783}
Frederic Weisbecker48d6a812013-07-10 02:44:35 +0200784EXPORT_SYMBOL_GPL(vtime_guest_enter);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100785
786void vtime_guest_exit(struct task_struct *tsk)
787{
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100788 write_seqcount_begin(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100789 __vtime_account_system(tsk);
790 current->flags &= ~PF_VCPU;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100791 write_seqcount_end(&tsk->vtime_seqcount);
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200792}
Frederic Weisbecker48d6a812013-07-10 02:44:35 +0200793EXPORT_SYMBOL_GPL(vtime_guest_exit);
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200794
795void vtime_account_idle(struct task_struct *tsk)
796{
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100797 cputime_t delta_cpu = get_vtime_delta(tsk);
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200798
799 account_idle_time(delta_cpu);
800}
Frederic Weisbecker3f4724e2012-07-16 18:00:34 +0200801
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100802void arch_vtime_task_switch(struct task_struct *prev)
803{
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100804 write_seqcount_begin(&prev->vtime_seqcount);
Frederic Weisbecker7098c1e2015-11-19 16:47:30 +0100805 prev->vtime_snap_whence = VTIME_INACTIVE;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100806 write_seqcount_end(&prev->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100807
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100808 write_seqcount_begin(&current->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100809 current->vtime_snap_whence = VTIME_SYS;
Rik van Rielff9a9b42016-02-10 20:08:27 -0500810 current->vtime_snap = jiffies;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100811 write_seqcount_end(&current->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100812}
813
Frederic Weisbecker45eacc62013-05-15 22:16:32 +0200814void vtime_init_idle(struct task_struct *t, int cpu)
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100815{
816 unsigned long flags;
817
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100818 local_irq_save(flags);
819 write_seqcount_begin(&t->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100820 t->vtime_snap_whence = VTIME_SYS;
Rik van Rielff9a9b42016-02-10 20:08:27 -0500821 t->vtime_snap = jiffies;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100822 write_seqcount_end(&t->vtime_seqcount);
823 local_irq_restore(flags);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100824}
825
Frederic Weisbecker16a6d9b2017-01-31 04:09:21 +0100826u64 task_gtime(struct task_struct *t)
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100827{
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100828 unsigned int seq;
Frederic Weisbecker16a6d9b2017-01-31 04:09:21 +0100829 u64 gtime;
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100830
Frederic Weisbeckere5925392015-11-19 16:47:33 +0100831 if (!vtime_accounting_enabled())
Hiroshi Shimamoto25411172015-11-19 16:47:28 +0100832 return t->gtime;
833
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100834 do {
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100835 seq = read_seqcount_begin(&t->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100836
837 gtime = t->gtime;
Frederic Weisbeckercab245d2015-11-19 16:47:31 +0100838 if (t->vtime_snap_whence == VTIME_SYS && t->flags & PF_VCPU)
Frederic Weisbecker16a6d9b2017-01-31 04:09:21 +0100839 gtime += cputime_to_nsecs(vtime_delta(t));
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100840
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100841 } while (read_seqcount_retry(&t->vtime_seqcount, seq));
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100842
843 return gtime;
844}
845
846/*
847 * Fetch cputime raw values from fields of task_struct and
848 * add up the pending nohz execution time since the last
849 * cputime snapshot.
850 */
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100851void task_cputime(struct task_struct *t, u64 *utime, u64 *stime)
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100852{
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100853 u64 delta;
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100854 unsigned int seq;
Stanislaw Gruszka353c50e2016-11-15 03:06:52 +0100855
856 if (!vtime_accounting_enabled()) {
857 *utime = t->utime;
858 *stime = t->stime;
859 return;
860 }
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100861
862 do {
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100863 seq = read_seqcount_begin(&t->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100864
Stanislaw Gruszka353c50e2016-11-15 03:06:52 +0100865 *utime = t->utime;
866 *stime = t->stime;
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100867
868 /* Task is sleeping, nothing to add */
Stanislaw Gruszka353c50e2016-11-15 03:06:52 +0100869 if (t->vtime_snap_whence == VTIME_INACTIVE || is_idle_task(t))
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100870 continue;
871
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100872 delta = cputime_to_nsecs(vtime_delta(t));
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100873
874 /*
875 * Task runs either in user or kernel space, add pending nohz time to
876 * the right place.
877 */
Stanislaw Gruszka353c50e2016-11-15 03:06:52 +0100878 if (t->vtime_snap_whence == VTIME_USER || t->flags & PF_VCPU)
879 *utime += delta;
880 else if (t->vtime_snap_whence == VTIME_SYS)
881 *stime += delta;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100882 } while (read_seqcount_retry(&t->vtime_seqcount, seq));
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100883}
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200884#endif /* CONFIG_VIRT_CPU_ACCOUNTING_GEN */