Lines Matching refs:cpus_runtime
1571 total = stat->cpus_runtime[i].total; in top_print_per_cpu_load()
1572 load = stat->cpus_runtime[i].load; in top_print_per_cpu_load()
1593 u64 idle_time = stat->cpus_runtime[MAX_NR_CPUS].idle; in top_print_cpu_usage()
1594 u64 hardirq_time = stat->cpus_runtime[MAX_NR_CPUS].irq; in top_print_cpu_usage()
1595 u64 softirq_time = stat->cpus_runtime[MAX_NR_CPUS].softirq; in top_print_cpu_usage()
1597 u64 cpus_total_time = stat->cpus_runtime[MAX_NR_CPUS].total; in top_print_cpu_usage()
2010 stat->cpus_runtime[work->cpu].total += work->total_runtime; in top_calc_total_runtime()
2011 stat->cpus_runtime[MAX_NR_CPUS].total += work->total_runtime; in top_calc_total_runtime()
2022 stat->cpus_runtime[work->cpu].idle += work->total_runtime; in top_calc_idle_time()
2023 stat->cpus_runtime[MAX_NR_CPUS].idle += work->total_runtime; in top_calc_idle_time()
2034 stat->cpus_runtime[work->cpu].irq += work->total_runtime; in top_calc_irq_runtime()
2035 stat->cpus_runtime[MAX_NR_CPUS].irq += work->total_runtime; in top_calc_irq_runtime()
2037 stat->cpus_runtime[work->cpu].softirq += work->total_runtime; in top_calc_irq_runtime()
2038 stat->cpus_runtime[MAX_NR_CPUS].softirq += work->total_runtime; in top_calc_irq_runtime()
2090 stat->cpus_runtime[work->cpu].total; in top_calc_cpu_usage()
2104 stat->cpus_runtime[work->cpu].load += work->total_runtime; in top_calc_load_runtime()
2105 stat->cpus_runtime[MAX_NR_CPUS].load += work->total_runtime; in top_calc_load_runtime()
2206 struct __top_cpus_runtime *cpus_runtime; in perf_kwork__top() local
2209 cpus_runtime = zalloc(sizeof(struct __top_cpus_runtime) * (MAX_NR_CPUS + 1)); in perf_kwork__top()
2210 if (!cpus_runtime) in perf_kwork__top()
2213 kwork->top_stat.cpus_runtime = cpus_runtime; in perf_kwork__top()
2233 zfree(&kwork->top_stat.cpus_runtime); in perf_kwork__top()