blob: 8c64753067c5685926b31e4c8e94532c1debcc99 [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>
Ingo Molnar32ef5512017-02-05 11:48:36 +01007#include <linux/sched/cputime.h>
Frederic Weisbecker73fbec62012-06-16 15:57:37 +02008#include "sched.h"
Frederic Weisbecker73fbec62012-06-16 15:57:37 +02009
10#ifdef CONFIG_IRQ_TIME_ACCOUNTING
11
12/*
13 * There are no locks covering percpu hardirq/softirq time.
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +020014 * They are only modified in vtime_account, on corresponding CPU
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020015 * with interrupts disabled. So, writes are safe.
16 * They are read and saved off onto struct rq in update_rq_clock().
17 * This may result in other CPU reading this CPU's irq time and can
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +020018 * race with irq/vtime_account on this CPU. We would either get old
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020019 * or new value with a side effect of accounting a slice of irq time to wrong
20 * task when irq is in progress while we read rq->clock. That is a worthy
21 * compromise in place of having locks on each irq in account_system_time.
22 */
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020023DEFINE_PER_CPU(struct irqtime, cpu_irqtime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020024
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020025static int sched_clock_irqtime;
26
27void enable_sched_clock_irqtime(void)
28{
29 sched_clock_irqtime = 1;
30}
31
32void disable_sched_clock_irqtime(void)
33{
34 sched_clock_irqtime = 0;
35}
36
Frederic Weisbecker25e2d8c2017-04-25 16:10:48 +020037static void irqtime_account_delta(struct irqtime *irqtime, u64 delta,
38 enum cpu_usage_stat idx)
39{
40 u64 *cpustat = kcpustat_this_cpu->cpustat;
41
42 u64_stats_update_begin(&irqtime->sync);
43 cpustat[idx] += delta;
44 irqtime->total += delta;
45 irqtime->tick_delta += delta;
46 u64_stats_update_end(&irqtime->sync);
47}
48
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020049/*
50 * Called before incrementing preempt_count on {soft,}irq_enter
51 * and before decrementing preempt_count on {soft,}irq_exit.
52 */
Frederic Weisbecker3e1df4f52012-10-06 05:23:22 +020053void irqtime_account_irq(struct task_struct *curr)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020054{
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020055 struct irqtime *irqtime = this_cpu_ptr(&cpu_irqtime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020056 s64 delta;
57 int cpu;
58
59 if (!sched_clock_irqtime)
60 return;
61
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020062 cpu = smp_processor_id();
Frederic Weisbecker19d23dbf2016-09-26 02:29:20 +020063 delta = sched_clock_cpu(cpu) - irqtime->irq_start_time;
64 irqtime->irq_start_time += delta;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020065
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020066 /*
67 * We do not account for softirq time from ksoftirqd here.
68 * We want to continue accounting softirq time to ksoftirqd thread
69 * in that case, so as not to confuse scheduler with a special task
70 * that do not consume any time, but still wants to run.
71 */
Frederic Weisbecker25e2d8c2017-04-25 16:10:48 +020072 if (hardirq_count())
73 irqtime_account_delta(irqtime, delta, CPUTIME_IRQ);
74 else if (in_serving_softirq() && curr != this_cpu_ksoftirqd())
75 irqtime_account_delta(irqtime, delta, CPUTIME_SOFTIRQ);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020076}
Frederic Weisbecker3e1df4f52012-10-06 05:23:22 +020077EXPORT_SYMBOL_GPL(irqtime_account_irq);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020078
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +010079static u64 irqtime_tick_accounted(u64 maxtime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020080{
Frederic Weisbeckera499a5a2017-01-31 04:09:32 +010081 struct irqtime *irqtime = this_cpu_ptr(&cpu_irqtime);
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +010082 u64 delta;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020083
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +010084 delta = min(irqtime->tick_delta, maxtime);
85 irqtime->tick_delta -= delta;
Frederic Weisbecker2810f612016-09-26 02:29:18 +020086
Frederic Weisbeckera499a5a2017-01-31 04:09:32 +010087 return delta;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020088}
89
90#else /* CONFIG_IRQ_TIME_ACCOUNTING */
91
92#define sched_clock_irqtime (0)
93
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +010094static u64 irqtime_tick_accounted(u64 dummy)
Rik van Riel57430212016-07-13 16:50:01 +020095{
96 return 0;
97}
98
Frederic Weisbecker73fbec62012-06-16 15:57:37 +020099#endif /* !CONFIG_IRQ_TIME_ACCOUNTING */
100
101static inline void task_group_account_field(struct task_struct *p, int index,
102 u64 tmp)
103{
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200104 /*
105 * Since all updates are sure to touch the root cgroup, we
106 * get ourselves ahead and touch it first. If the root cgroup
107 * is the only cgroup, then nothing else should be necessary.
108 *
109 */
Christoph Lametera4f61cc2013-08-07 15:38:24 +0000110 __this_cpu_add(kernel_cpustat.cpustat[index], tmp);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200111
Li Zefan1966aaf2013-03-29 14:37:06 +0800112 cpuacct_account_field(p, index, tmp);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200113}
114
115/*
116 * Account user cpu time to a process.
117 * @p: the process that the cpu time gets accounted to
118 * @cputime: the cpu time spent in user space since the last update
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200119 */
Frederic Weisbecker23244a52017-01-31 04:09:37 +0100120void account_user_time(struct task_struct *p, u64 cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200121{
122 int index;
123
124 /* Add user time to process. */
Frederic Weisbecker23244a52017-01-31 04:09:37 +0100125 p->utime += cputime;
126 account_group_user_time(p, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200127
Dongsheng Yangd0ea0262014-01-27 22:00:45 -0500128 index = (task_nice(p) > 0) ? CPUTIME_NICE : CPUTIME_USER;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200129
130 /* Add user time to cpustat. */
Frederic Weisbecker23244a52017-01-31 04:09:37 +0100131 task_group_account_field(p, index, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200132
133 /* Account for user time used */
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100134 acct_account_cputime(p);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200135}
136
137/*
138 * Account guest cpu time to a process.
139 * @p: the process that the cpu time gets accounted to
140 * @cputime: the cpu time spent in virtual machine since the last update
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200141 */
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100142void account_guest_time(struct task_struct *p, u64 cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200143{
144 u64 *cpustat = kcpustat_this_cpu->cpustat;
145
146 /* Add guest time to process. */
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100147 p->utime += cputime;
148 account_group_user_time(p, cputime);
149 p->gtime += cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200150
151 /* Add guest time to cpustat. */
Dongsheng Yangd0ea0262014-01-27 22:00:45 -0500152 if (task_nice(p) > 0) {
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100153 cpustat[CPUTIME_NICE] += cputime;
154 cpustat[CPUTIME_GUEST_NICE] += cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200155 } else {
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100156 cpustat[CPUTIME_USER] += cputime;
157 cpustat[CPUTIME_GUEST] += cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200158 }
159}
160
161/*
162 * Account system cpu time to a process and desired cpustat field
163 * @p: the process that the cpu time gets accounted to
164 * @cputime: the cpu time spent in kernel space since the last update
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100165 * @index: pointer to cpustat field that has to be updated
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200166 */
Frederic Weisbeckerc31cc6a2017-01-05 18:11:43 +0100167void account_system_index_time(struct task_struct *p,
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100168 u64 cputime, enum cpu_usage_stat index)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200169{
170 /* Add system time to process. */
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100171 p->stime += cputime;
172 account_group_system_time(p, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200173
174 /* Add system time to cpustat. */
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100175 task_group_account_field(p, index, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200176
177 /* Account for system time used */
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100178 acct_account_cputime(p);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200179}
180
181/*
182 * Account system cpu time to a process.
183 * @p: the process that the cpu time gets accounted to
184 * @hardirq_offset: the offset to subtract from hardirq_count()
185 * @cputime: the cpu time spent in kernel space since the last update
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200186 */
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100187void account_system_time(struct task_struct *p, int hardirq_offset, u64 cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200188{
189 int index;
190
191 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100192 account_guest_time(p, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200193 return;
194 }
195
196 if (hardirq_count() - hardirq_offset)
197 index = CPUTIME_IRQ;
198 else if (in_serving_softirq())
199 index = CPUTIME_SOFTIRQ;
200 else
201 index = CPUTIME_SYSTEM;
202
Frederic Weisbeckerc31cc6a2017-01-05 18:11:43 +0100203 account_system_index_time(p, cputime, index);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200204}
205
206/*
207 * Account for involuntary wait time.
208 * @cputime: the cpu time spent in involuntary wait
209 */
Frederic Weisbeckerbe9095e2017-01-31 04:09:38 +0100210void account_steal_time(u64 cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200211{
212 u64 *cpustat = kcpustat_this_cpu->cpustat;
213
Frederic Weisbeckerbe9095e2017-01-31 04:09:38 +0100214 cpustat[CPUTIME_STEAL] += cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200215}
216
217/*
218 * Account for idle time.
219 * @cputime: the cpu time spent in idle wait
220 */
Frederic Weisbecker18b43a92017-01-31 04:09:39 +0100221void account_idle_time(u64 cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200222{
223 u64 *cpustat = kcpustat_this_cpu->cpustat;
224 struct rq *rq = this_rq();
225
226 if (atomic_read(&rq->nr_iowait) > 0)
Frederic Weisbecker18b43a92017-01-31 04:09:39 +0100227 cpustat[CPUTIME_IOWAIT] += cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200228 else
Frederic Weisbecker18b43a92017-01-31 04:09:39 +0100229 cpustat[CPUTIME_IDLE] += cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200230}
231
Wanpeng Li03cbc732016-08-17 10:05:46 +0800232/*
233 * When a guest is interrupted for a longer amount of time, missed clock
234 * ticks are not redelivered later. Due to that, this function may on
235 * occasion account more time than the calling functions think elapsed.
236 */
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100237static __always_inline u64 steal_account_process_time(u64 maxtime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200238{
239#ifdef CONFIG_PARAVIRT
240 if (static_key_false(&paravirt_steal_enabled)) {
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100241 u64 steal;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200242
243 steal = paravirt_steal_clock(smp_processor_id());
244 steal -= this_rq()->prev_steal_time;
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100245 steal = min(steal, maxtime);
246 account_steal_time(steal);
247 this_rq()->prev_steal_time += steal;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200248
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100249 return steal;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200250 }
251#endif
Wanpeng Li807e5b82016-06-13 18:32:46 +0800252 return 0;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200253}
254
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100255/*
Rik van Riel57430212016-07-13 16:50:01 +0200256 * Account how much elapsed time was spent in steal, irq, or softirq time.
257 */
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100258static inline u64 account_other_time(u64 max)
Rik van Riel57430212016-07-13 16:50:01 +0200259{
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100260 u64 accounted;
Rik van Riel57430212016-07-13 16:50:01 +0200261
Frederic Weisbecker2810f612016-09-26 02:29:18 +0200262 /* Shall be converted to a lockdep-enabled lightweight check */
263 WARN_ON_ONCE(!irqs_disabled());
264
Rik van Riel57430212016-07-13 16:50:01 +0200265 accounted = steal_account_process_time(max);
266
267 if (accounted < max)
Frederic Weisbeckera499a5a2017-01-31 04:09:32 +0100268 accounted += irqtime_tick_accounted(max - accounted);
Rik van Riel57430212016-07-13 16:50:01 +0200269
270 return accounted;
271}
272
Stanislaw Gruszkaa1eb1412016-08-17 11:30:44 +0200273#ifdef CONFIG_64BIT
274static inline u64 read_sum_exec_runtime(struct task_struct *t)
275{
276 return t->se.sum_exec_runtime;
277}
278#else
279static u64 read_sum_exec_runtime(struct task_struct *t)
280{
281 u64 ns;
282 struct rq_flags rf;
283 struct rq *rq;
284
285 rq = task_rq_lock(t, &rf);
286 ns = t->se.sum_exec_runtime;
287 task_rq_unlock(rq, t, &rf);
288
289 return ns;
290}
291#endif
292
Rik van Riel57430212016-07-13 16:50:01 +0200293/*
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100294 * Accumulate raw cputime values of dead tasks (sig->[us]time) and live
295 * tasks (sum on group iteration) belonging to @tsk's group.
296 */
297void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times)
298{
299 struct signal_struct *sig = tsk->signal;
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100300 u64 utime, stime;
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100301 struct task_struct *t;
Rik van Riele78c3492014-08-16 13:40:10 -0400302 unsigned int seq, nextseq;
Rik van Riel9c368b52014-09-12 09:12:15 -0400303 unsigned long flags;
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100304
Stanislaw Gruszkaa1eb1412016-08-17 11:30:44 +0200305 /*
306 * Update current task runtime to account pending time since last
307 * scheduler action or thread_group_cputime() call. This thread group
308 * might have other running tasks on different CPUs, but updating
309 * their runtime can affect syscall performance, so we skip account
310 * those pending times and rely only on values updated on tick or
311 * other scheduler action.
312 */
313 if (same_thread_group(current, tsk))
314 (void) task_sched_runtime(current);
315
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100316 rcu_read_lock();
Rik van Riele78c3492014-08-16 13:40:10 -0400317 /* Attempt a lockless read on the first round. */
318 nextseq = 0;
319 do {
320 seq = nextseq;
Rik van Riel9c368b52014-09-12 09:12:15 -0400321 flags = read_seqbegin_or_lock_irqsave(&sig->stats_lock, &seq);
Rik van Riele78c3492014-08-16 13:40:10 -0400322 times->utime = sig->utime;
323 times->stime = sig->stime;
324 times->sum_exec_runtime = sig->sum_sched_runtime;
325
326 for_each_thread(tsk, t) {
327 task_cputime(t, &utime, &stime);
328 times->utime += utime;
329 times->stime += stime;
Stanislaw Gruszkaa1eb1412016-08-17 11:30:44 +0200330 times->sum_exec_runtime += read_sum_exec_runtime(t);
Rik van Riele78c3492014-08-16 13:40:10 -0400331 }
332 /* If lockless access failed, take the lock. */
333 nextseq = 1;
334 } while (need_seqretry(&sig->stats_lock, seq));
Rik van Riel9c368b52014-09-12 09:12:15 -0400335 done_seqretry_irqrestore(&sig->stats_lock, seq, flags);
Frederic Weisbeckera634f932012-11-21 15:55:59 +0100336 rcu_read_unlock();
337}
338
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200339#ifdef CONFIG_IRQ_TIME_ACCOUNTING
340/*
341 * Account a tick to a process and cpustat
342 * @p: the process that the cpu time gets accounted to
343 * @user_tick: is the tick from userspace
344 * @rq: the pointer to rq
345 *
346 * Tick demultiplexing follows the order
347 * - pending hardirq update
348 * - pending softirq update
349 * - user_time
350 * - idle_time
351 * - system time
352 * - check for guest_time
353 * - else account as system_time
354 *
355 * Check for hardirq is done both for system and user time as there is
356 * no timer going off while we are on hardirq and hence we may never get an
357 * opportunity to update it solely in system time.
358 * p->stime and friends are only updated on system time and not on irq
359 * softirq as those do not count in task exec_runtime any more.
360 */
361static void irqtime_account_process_tick(struct task_struct *p, int user_tick,
Thomas Gleixner2d513862014-05-02 23:26:24 +0200362 struct rq *rq, int ticks)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200363{
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100364 u64 other, cputime = TICK_NSEC * ticks;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200365
Rik van Riel57430212016-07-13 16:50:01 +0200366 /*
367 * When returning from idle, many ticks can get accounted at
368 * once, including some ticks of steal, irq, and softirq time.
369 * Subtract those ticks from the amount of time accounted to
370 * idle, or potentially user or system time. Due to rounding,
371 * other time can exceed ticks occasionally.
372 */
Wanpeng Li03cbc732016-08-17 10:05:46 +0800373 other = account_other_time(ULONG_MAX);
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100374 if (other >= cputime)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200375 return;
Frederic Weisbecker23244a52017-01-31 04:09:37 +0100376
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100377 cputime -= other;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200378
Rik van Riel57430212016-07-13 16:50:01 +0200379 if (this_cpu_ksoftirqd() == p) {
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200380 /*
381 * ksoftirqd time do not get accounted in cpu_softirq_time.
382 * So, we have to handle it separately here.
383 * Also, p->stime needs to be updated for ksoftirqd.
384 */
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100385 account_system_index_time(p, cputime, CPUTIME_SOFTIRQ);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200386 } else if (user_tick) {
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100387 account_user_time(p, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200388 } else if (p == rq->idle) {
Frederic Weisbecker18b43a92017-01-31 04:09:39 +0100389 account_idle_time(cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200390 } else if (p->flags & PF_VCPU) { /* System time or guest time */
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100391 account_guest_time(p, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200392 } else {
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100393 account_system_index_time(p, cputime, CPUTIME_SYSTEM);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200394 }
395}
396
397static void irqtime_account_idle_ticks(int ticks)
398{
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200399 struct rq *rq = this_rq();
400
Thomas Gleixner2d513862014-05-02 23:26:24 +0200401 irqtime_account_process_tick(current, 0, rq, ticks);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200402}
403#else /* CONFIG_IRQ_TIME_ACCOUNTING */
Frederic Weisbecker3f4724e2012-07-16 18:00:34 +0200404static inline void irqtime_account_idle_ticks(int ticks) {}
405static inline void irqtime_account_process_tick(struct task_struct *p, int user_tick,
Thomas Gleixner2d513862014-05-02 23:26:24 +0200406 struct rq *rq, int nr_ticks) {}
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200407#endif /* CONFIG_IRQ_TIME_ACCOUNTING */
408
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200409/*
410 * Use precise platform statistics if available:
411 */
412#ifdef CONFIG_VIRT_CPU_ACCOUNTING
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200413
Frederic Weisbeckere3942ba2012-11-14 00:24:25 +0100414#ifndef __ARCH_HAS_VTIME_TASK_SWITCH
Frederic Weisbeckerb0493402013-07-12 03:10:15 +0200415void vtime_common_task_switch(struct task_struct *prev)
Frederic Weisbeckere3942ba2012-11-14 00:24:25 +0100416{
417 if (is_idle_task(prev))
418 vtime_account_idle(prev);
419 else
420 vtime_account_system(prev);
421
Frederic Weisbeckerc8d7dab2017-01-05 18:11:50 +0100422 vtime_flush(prev);
Frederic Weisbeckere3942ba2012-11-14 00:24:25 +0100423 arch_vtime_task_switch(prev);
424}
425#endif
Frederic Weisbecker11113332012-10-24 18:05:51 +0200426
Frederic Weisbecker0cfdf9a2016-07-13 16:50:03 +0200427#endif /* CONFIG_VIRT_CPU_ACCOUNTING */
428
429
430#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200431/*
432 * Archs that account the whole time spent in the idle task
433 * (outside irq) as idle time can rely on this and just implement
Frederic Weisbeckerfd25b4c2012-11-13 18:21:22 +0100434 * vtime_account_system() and vtime_account_idle(). Archs that
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200435 * have other meaning of the idle time (s390 only includes the
436 * time spent by the CPU when it's in low power mode) must override
437 * vtime_account().
438 */
439#ifndef __ARCH_HAS_VTIME_ACCOUNT
Frederic Weisbecker0cfdf9a2016-07-13 16:50:03 +0200440void vtime_account_irq_enter(struct task_struct *tsk)
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200441{
Frederic Weisbecker0cfdf9a2016-07-13 16:50:03 +0200442 if (!in_interrupt() && is_idle_task(tsk))
443 vtime_account_idle(tsk);
444 else
445 vtime_account_system(tsk);
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200446}
Frederic Weisbecker0cfdf9a2016-07-13 16:50:03 +0200447EXPORT_SYMBOL_GPL(vtime_account_irq_enter);
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200448#endif /* __ARCH_HAS_VTIME_ACCOUNT */
449
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100450void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200451{
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100452 *ut = p->utime;
453 *st = p->stime;
454}
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300455EXPORT_SYMBOL_GPL(task_cputime_adjusted);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200456
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100457void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st)
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100458{
459 struct task_cputime cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200460
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100461 thread_group_cputime(p, &cputime);
462
463 *ut = cputime.utime;
464 *st = cputime.stime;
465}
466#else /* !CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
467/*
468 * Account a single tick of cpu time.
469 * @p: the process that the cpu time gets accounted to
470 * @user_tick: indicates if the tick is a user or a system tick
471 */
472void account_process_tick(struct task_struct *p, int user_tick)
473{
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100474 u64 cputime, steal;
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100475 struct rq *rq = this_rq();
476
Frederic Weisbecker55dbdcf2015-11-19 16:47:32 +0100477 if (vtime_accounting_cpu_enabled())
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100478 return;
479
480 if (sched_clock_irqtime) {
Thomas Gleixner2d513862014-05-02 23:26:24 +0200481 irqtime_account_process_tick(p, user_tick, rq, 1);
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100482 return;
483 }
484
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100485 cputime = TICK_NSEC;
Wanpeng Li03cbc732016-08-17 10:05:46 +0800486 steal = steal_account_process_time(ULONG_MAX);
Rik van Riel57430212016-07-13 16:50:01 +0200487
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100488 if (steal >= cputime)
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100489 return;
490
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100491 cputime -= steal;
Rik van Riel57430212016-07-13 16:50:01 +0200492
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100493 if (user_tick)
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100494 account_user_time(p, cputime);
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100495 else if ((p != rq->idle) || (irq_count() != HARDIRQ_OFFSET))
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100496 account_system_time(p, HARDIRQ_OFFSET, cputime);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200497 else
Frederic Weisbecker18b43a92017-01-31 04:09:39 +0100498 account_idle_time(cputime);
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100499}
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200500
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100501/*
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100502 * Account multiple ticks of idle time.
503 * @ticks: number of stolen ticks
504 */
505void account_idle_ticks(unsigned long ticks)
506{
Frederic Weisbecker18b43a92017-01-31 04:09:39 +0100507 u64 cputime, steal;
Frederic Weisbecker26f2c752016-08-11 14:58:24 +0200508
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100509 if (sched_clock_irqtime) {
510 irqtime_account_idle_ticks(ticks);
511 return;
512 }
513
Frederic Weisbecker18b43a92017-01-31 04:09:39 +0100514 cputime = ticks * TICK_NSEC;
Frederic Weisbecker2b1f9672017-01-31 04:09:41 +0100515 steal = steal_account_process_time(ULONG_MAX);
Wanpeng Lif9bcf1e2016-08-11 13:36:35 +0800516
517 if (steal >= cputime)
518 return;
519
520 cputime -= steal;
521 account_idle_time(cputime);
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100522}
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200523
Frederic Weisbeckerd9a3c982013-02-20 18:54:55 +0100524/*
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200525 * Perform (stime * rtime) / total, but avoid multiplication overflow by
526 * loosing precision when the numbers are big.
Frederic Weisbeckerd9a3c982013-02-20 18:54:55 +0100527 */
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100528static u64 scale_stime(u64 stime, u64 rtime, u64 total)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200529{
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200530 u64 scaled;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200531
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200532 for (;;) {
533 /* Make sure "rtime" is the bigger of stime/rtime */
Stanislaw Gruszka84f9f3a2013-05-02 15:34:33 +0200534 if (stime > rtime)
535 swap(rtime, stime);
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200536
537 /* Make sure 'total' fits in 32 bits */
538 if (total >> 32)
539 goto drop_precision;
540
541 /* Does rtime (and thus stime) fit in 32 bits? */
542 if (!(rtime >> 32))
543 break;
544
545 /* Can we just balance rtime/stime rather than dropping bits? */
546 if (stime >> 31)
547 goto drop_precision;
548
549 /* We can grow stime and shrink rtime and try to make them both fit */
550 stime <<= 1;
551 rtime >>= 1;
552 continue;
553
554drop_precision:
555 /* We drop from rtime, it has more bits than stime */
556 rtime >>= 1;
557 total >>= 1;
Frederic Weisbeckerd9a3c982013-02-20 18:54:55 +0100558 }
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200559
Stanislaw Gruszka55eaa7c2013-04-30 17:14:42 +0200560 /*
561 * Make sure gcc understands that this is a 32x32->64 multiply,
562 * followed by a 64/32->64 divide.
563 */
564 scaled = div_u64((u64) (u32) stime * (u64) (u32) rtime, (u32)total);
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100565 return scaled;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200566}
567
Frederic Weisbeckerfa092052012-11-28 17:00:57 +0100568/*
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200569 * Adjust tick based cputime random precision against scheduler runtime
570 * accounting.
Rik van Riel347abad2014-09-30 15:59:47 -0400571 *
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200572 * Tick based cputime accounting depend on random scheduling timeslices of a
573 * task to be interrupted or not by the timer. Depending on these
574 * circumstances, the number of these interrupts may be over or
575 * under-optimistic, matching the real user and system cputime with a variable
576 * precision.
577 *
578 * Fix this by scaling these tick based values against the total runtime
579 * accounted by the CFS scheduler.
580 *
581 * This code provides the following guarantees:
582 *
583 * stime + utime == rtime
584 * stime_i+1 >= stime_i, utime_i+1 >= utime_i
585 *
586 * Assuming that rtime_i+1 >= rtime_i.
Frederic Weisbeckerfa092052012-11-28 17:00:57 +0100587 */
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100588static void cputime_adjust(struct task_cputime *curr,
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200589 struct prev_cputime *prev,
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100590 u64 *ut, u64 *st)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200591{
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100592 u64 rtime, stime, utime;
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200593 unsigned long flags;
Frederic Weisbeckerfa092052012-11-28 17:00:57 +0100594
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200595 /* Serialize concurrent callers such that we can honour our guarantees */
596 raw_spin_lock_irqsave(&prev->lock, flags);
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100597 rtime = curr->sum_exec_runtime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200598
Stanislaw Gruszka772c8082013-04-30 11:35:05 +0200599 /*
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200600 * This is possible under two circumstances:
601 * - rtime isn't monotonic after all (a bug);
602 * - we got reordered by the lock.
603 *
604 * In both cases this acts as a filter such that the rest of the code
605 * can assume it is monotonic regardless of anything else.
Stanislaw Gruszka772c8082013-04-30 11:35:05 +0200606 */
607 if (prev->stime + prev->utime >= rtime)
608 goto out;
609
Stanislaw Gruszka5a8e01f2013-09-04 15:16:03 +0200610 stime = curr->stime;
611 utime = curr->utime;
612
Peter Zijlstra173be9a2016-08-15 18:38:42 +0200613 /*
Ingo Molnar3b9c08a2017-07-04 11:53:40 +0200614 * If either stime or utime are 0, assume all runtime is userspace.
615 * Once a task gets some ticks, the monotonicy code at 'update:'
616 * will ensure things converge to the observed ratio.
Peter Zijlstra173be9a2016-08-15 18:38:42 +0200617 */
Ingo Molnar3b9c08a2017-07-04 11:53:40 +0200618 if (stime == 0) {
619 utime = rtime;
620 goto update;
Frederic Weisbeckerd9a3c982013-02-20 18:54:55 +0100621 }
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200622
Ingo Molnar3b9c08a2017-07-04 11:53:40 +0200623 if (utime == 0) {
624 stime = rtime;
625 goto update;
626 }
627
628 stime = scale_stime(stime, rtime, stime + utime);
629
630update:
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200631 /*
632 * Make sure stime doesn't go backwards; this preserves monotonicity
633 * for utime because rtime is monotonic.
634 *
635 * utime_i+1 = rtime_i+1 - stime_i
636 * = rtime_i+1 - (rtime_i - utime_i)
637 * = (rtime_i+1 - rtime_i) + utime_i
638 * >= utime_i
639 */
640 if (stime < prev->stime)
641 stime = prev->stime;
642 utime = rtime - stime;
643
644 /*
645 * Make sure utime doesn't go backwards; this still preserves
646 * monotonicity for stime, analogous argument to above.
647 */
648 if (utime < prev->utime) {
649 utime = prev->utime;
650 stime = rtime - utime;
651 }
652
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200653 prev->stime = stime;
654 prev->utime = utime;
Stanislaw Gruszka772c8082013-04-30 11:35:05 +0200655out:
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100656 *ut = prev->utime;
657 *st = prev->stime;
Peter Zijlstra9d7fb042015-06-30 11:30:54 +0200658 raw_spin_unlock_irqrestore(&prev->lock, flags);
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100659}
660
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100661void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st)
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100662{
663 struct task_cputime cputime = {
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100664 .sum_exec_runtime = p->se.sum_exec_runtime,
665 };
666
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100667 task_cputime(p, &cputime.utime, &cputime.stime);
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100668 cputime_adjust(&cputime, &p->prev_cputime, ut, st);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200669}
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300670EXPORT_SYMBOL_GPL(task_cputime_adjusted);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200671
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100672void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st)
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200673{
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200674 struct task_cputime cputime;
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200675
676 thread_group_cputime(p, &cputime);
Frederic Weisbeckerd37f761d2012-11-22 00:58:35 +0100677 cputime_adjust(&cputime, &p->signal->prev_cputime, ut, st);
Frederic Weisbecker73fbec62012-06-16 15:57:37 +0200678}
Frederic Weisbecker9fbc42e2013-02-25 17:25:39 +0100679#endif /* !CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200680
681#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
Frederic Weisbeckerbfce1d62017-01-31 04:09:42 +0100682static u64 vtime_delta(struct task_struct *tsk)
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200683{
Rik van Rielff9a9b42016-02-10 20:08:27 -0500684 unsigned long now = READ_ONCE(jiffies);
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200685
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200686 if (time_before(now, (unsigned long)tsk->vtime_starttime))
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100687 return 0;
688
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200689 return jiffies_to_nsecs(now - tsk->vtime_starttime);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100690}
691
Frederic Weisbeckerbfce1d62017-01-31 04:09:42 +0100692static u64 get_vtime_delta(struct task_struct *tsk)
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100693{
Rik van Rielff9a9b42016-02-10 20:08:27 -0500694 unsigned long now = READ_ONCE(jiffies);
Frederic Weisbeckerbfce1d62017-01-31 04:09:42 +0100695 u64 delta, other;
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100696
Wanpeng Li03cbc732016-08-17 10:05:46 +0800697 /*
698 * Unlike tick based timing, vtime based timing never has lost
699 * ticks, and no need for steal time accounting to make up for
700 * lost ticks. Vtime accounts a rounded version of actual
701 * elapsed time. Limit account_other_time to prevent rounding
702 * errors from causing elapsed vtime to go negative.
703 */
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200704 delta = jiffies_to_nsecs(now - tsk->vtime_starttime);
Rik van Rielb58c3582016-07-13 16:50:02 +0200705 other = account_other_time(delta);
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200706 WARN_ON_ONCE(tsk->vtime_state == VTIME_INACTIVE);
707 tsk->vtime_starttime = now;
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200708
Rik van Rielb58c3582016-07-13 16:50:02 +0200709 return delta - other;
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200710}
711
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100712static void __vtime_account_system(struct task_struct *tsk)
713{
Frederic Weisbeckerbfce1d62017-01-31 04:09:42 +0100714 account_system_time(tsk, irq_count(), get_vtime_delta(tsk));
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100715}
716
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200717void vtime_account_system(struct task_struct *tsk)
718{
Rik van Rielff9a9b42016-02-10 20:08:27 -0500719 if (!vtime_delta(tsk))
720 return;
721
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100722 write_seqcount_begin(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100723 __vtime_account_system(tsk);
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100724 write_seqcount_end(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100725}
726
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100727void vtime_user_enter(struct task_struct *tsk)
728{
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100729 write_seqcount_begin(&tsk->vtime_seqcount);
Rik van Rielff9a9b42016-02-10 20:08:27 -0500730 if (vtime_delta(tsk))
731 __vtime_account_system(tsk);
Frederic Weisbeckeraf2350b2013-07-15 16:35:55 +0200732 tsk->vtime_snap_whence = VTIME_USER;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100733 write_seqcount_end(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100734}
735
Frederic Weisbecker1c3eda02017-06-29 19:15:07 +0200736void vtime_user_exit(struct task_struct *tsk)
737{
738 write_seqcount_begin(&tsk->vtime_seqcount);
Frederic Weisbecker1c3eda02017-06-29 19:15:07 +0200739 if (vtime_delta(tsk))
740 account_user_time(tsk, get_vtime_delta(tsk));
Frederic Weisbecker9fa57cf2017-06-29 19:15:08 +0200741 tsk->vtime_snap_whence = VTIME_SYS;
Frederic Weisbecker1c3eda02017-06-29 19:15:07 +0200742 write_seqcount_end(&tsk->vtime_seqcount);
743}
744
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100745void vtime_guest_enter(struct task_struct *tsk)
746{
Frederic Weisbecker5b206d42013-07-12 19:05:14 +0200747 /*
748 * The flags must be updated under the lock with
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200749 * the vtime_starttime flush and update.
Frederic Weisbecker5b206d42013-07-12 19:05:14 +0200750 * That enforces a right ordering and update sequence
751 * synchronization against the reader (task_gtime())
752 * that can thus safely catch up with a tickless delta.
753 */
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100754 write_seqcount_begin(&tsk->vtime_seqcount);
Rik van Rielff9a9b42016-02-10 20:08:27 -0500755 if (vtime_delta(tsk))
756 __vtime_account_system(tsk);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100757 current->flags |= PF_VCPU;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100758 write_seqcount_end(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100759}
Frederic Weisbecker48d6a812013-07-10 02:44:35 +0200760EXPORT_SYMBOL_GPL(vtime_guest_enter);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100761
762void vtime_guest_exit(struct task_struct *tsk)
763{
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100764 write_seqcount_begin(&tsk->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100765 __vtime_account_system(tsk);
766 current->flags &= ~PF_VCPU;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100767 write_seqcount_end(&tsk->vtime_seqcount);
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200768}
Frederic Weisbecker48d6a812013-07-10 02:44:35 +0200769EXPORT_SYMBOL_GPL(vtime_guest_exit);
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200770
771void vtime_account_idle(struct task_struct *tsk)
772{
Frederic Weisbeckerbfce1d62017-01-31 04:09:42 +0100773 account_idle_time(get_vtime_delta(tsk));
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200774}
Frederic Weisbecker3f4724e2012-07-16 18:00:34 +0200775
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100776void arch_vtime_task_switch(struct task_struct *prev)
777{
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100778 write_seqcount_begin(&prev->vtime_seqcount);
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200779 prev->vtime_state = VTIME_INACTIVE;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100780 write_seqcount_end(&prev->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100781
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100782 write_seqcount_begin(&current->vtime_seqcount);
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200783 current->vtime_state = VTIME_SYS;
784 current->vtime_starttime = jiffies;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100785 write_seqcount_end(&current->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100786}
787
Frederic Weisbecker45eacc62013-05-15 22:16:32 +0200788void vtime_init_idle(struct task_struct *t, int cpu)
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100789{
790 unsigned long flags;
791
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100792 local_irq_save(flags);
793 write_seqcount_begin(&t->vtime_seqcount);
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200794 t->vtime_state = VTIME_SYS;
795 t->vtime_starttime = jiffies;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100796 write_seqcount_end(&t->vtime_seqcount);
797 local_irq_restore(flags);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100798}
799
Frederic Weisbecker16a6d9b2017-01-31 04:09:21 +0100800u64 task_gtime(struct task_struct *t)
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100801{
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100802 unsigned int seq;
Frederic Weisbecker16a6d9b2017-01-31 04:09:21 +0100803 u64 gtime;
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100804
Frederic Weisbeckere5925392015-11-19 16:47:33 +0100805 if (!vtime_accounting_enabled())
Hiroshi Shimamoto25411172015-11-19 16:47:28 +0100806 return t->gtime;
807
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100808 do {
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100809 seq = read_seqcount_begin(&t->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100810
811 gtime = t->gtime;
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200812 if (t->vtime_state == VTIME_SYS && t->flags & PF_VCPU)
Frederic Weisbeckerbfce1d62017-01-31 04:09:42 +0100813 gtime += vtime_delta(t);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100814
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100815 } while (read_seqcount_retry(&t->vtime_seqcount, seq));
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100816
817 return gtime;
818}
819
820/*
821 * Fetch cputime raw values from fields of task_struct and
822 * add up the pending nohz execution time since the last
823 * cputime snapshot.
824 */
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100825void task_cputime(struct task_struct *t, u64 *utime, u64 *stime)
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100826{
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100827 u64 delta;
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100828 unsigned int seq;
Stanislaw Gruszka353c50e2016-11-15 03:06:52 +0100829
830 if (!vtime_accounting_enabled()) {
831 *utime = t->utime;
832 *stime = t->stime;
833 return;
834 }
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100835
836 do {
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100837 seq = read_seqcount_begin(&t->vtime_seqcount);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100838
Stanislaw Gruszka353c50e2016-11-15 03:06:52 +0100839 *utime = t->utime;
840 *stime = t->stime;
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100841
842 /* Task is sleeping, nothing to add */
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200843 if (t->vtime_state == VTIME_INACTIVE || is_idle_task(t))
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100844 continue;
845
Frederic Weisbeckerbfce1d62017-01-31 04:09:42 +0100846 delta = vtime_delta(t);
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100847
848 /*
849 * Task runs either in user or kernel space, add pending nohz time to
850 * the right place.
851 */
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200852 if (t->vtime_state == VTIME_USER || t->flags & PF_VCPU)
Stanislaw Gruszka353c50e2016-11-15 03:06:52 +0100853 *utime += delta;
Frederic Weisbecker60a9ce52017-06-29 19:15:09 +0200854 else if (t->vtime_state == VTIME_SYS)
Stanislaw Gruszka353c50e2016-11-15 03:06:52 +0100855 *stime += delta;
Frederic Weisbeckerb7ce2272015-11-19 16:47:34 +0100856 } while (read_seqcount_retry(&t->vtime_seqcount, seq));
Frederic Weisbecker6a616712012-12-16 20:00:34 +0100857}
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200858#endif /* CONFIG_VIRT_CPU_ACCOUNTING_GEN */