Lines Matching refs:cputime
263 struct task_cputime cputime; in cpuacct_stats_show() local
268 memset(&cputime, 0, sizeof(cputime)); in cpuacct_stats_show()
272 cputime.utime += cpustat[CPUTIME_USER]; in cpuacct_stats_show()
273 cputime.utime += cpustat[CPUTIME_NICE]; in cpuacct_stats_show()
274 cputime.stime += cpustat[CPUTIME_SYSTEM]; in cpuacct_stats_show()
275 cputime.stime += cpustat[CPUTIME_IRQ]; in cpuacct_stats_show()
276 cputime.stime += cpustat[CPUTIME_SOFTIRQ]; in cpuacct_stats_show()
278 cputime.sum_exec_runtime += *per_cpu_ptr(ca->cpuusage, cpu); in cpuacct_stats_show()
281 cputime_adjust(&cputime, &seq_css(sf)->cgroup->prev_cputime, in cpuacct_stats_show()
334 void cpuacct_charge(struct task_struct *tsk, u64 cputime) in cpuacct_charge() argument
342 *per_cpu_ptr(ca->cpuusage, cpu) += cputime; in cpuacct_charge()