blob: 750fb3c67eed27c70c5ae73b07651d8c2e0e2eab [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Ingo Molnar325ea102018-03-03 12:20:47 +01002/*
3 * /proc/schedstat implementation
4 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02005#include "sched.h"
6
7/*
Ingo Molnar325ea102018-03-03 12:20:47 +01008 * Current schedstat API version.
9 *
10 * Bump this up when changing the output format or the meaning of an existing
Peter Zijlstra029632f2011-10-25 10:00:11 +020011 * format, so that tools can adapt (or abort)
12 */
13#define SCHEDSTAT_VERSION 15
14
15static int show_schedstat(struct seq_file *seq, void *v)
16{
17 int cpu;
Peter Zijlstra029632f2011-10-25 10:00:11 +020018
Nathan Zimmercb152ff2013-02-21 15:15:08 -080019 if (v == (void *)1) {
20 seq_printf(seq, "version %d\n", SCHEDSTAT_VERSION);
21 seq_printf(seq, "timestamp %lu\n", jiffies);
22 } else {
23 struct rq *rq;
Peter Zijlstra029632f2011-10-25 10:00:11 +020024#ifdef CONFIG_SMP
25 struct sched_domain *sd;
26 int dcount = 0;
27#endif
Nathan Zimmercb152ff2013-02-21 15:15:08 -080028 cpu = (unsigned long)(v - 2);
29 rq = cpu_rq(cpu);
Peter Zijlstra029632f2011-10-25 10:00:11 +020030
31 /* runqueue-specific stats */
32 seq_printf(seq,
Rakib Mullick30fd0492012-01-24 22:33:56 +060033 "cpu%d %u 0 %u %u %u %u %llu %llu %lu",
Peter Zijlstra029632f2011-10-25 10:00:11 +020034 cpu, rq->yld_count,
Rakib Mullick30fd0492012-01-24 22:33:56 +060035 rq->sched_count, rq->sched_goidle,
Peter Zijlstra029632f2011-10-25 10:00:11 +020036 rq->ttwu_count, rq->ttwu_local,
37 rq->rq_cpu_time,
38 rq->rq_sched_info.run_delay, rq->rq_sched_info.pcount);
39
40 seq_printf(seq, "\n");
41
42#ifdef CONFIG_SMP
43 /* domain-specific stats */
44 rcu_read_lock();
45 for_each_domain(cpu, sd) {
46 enum cpu_idle_type itype;
47
Tejun Heo333470e2015-02-13 14:37:28 -080048 seq_printf(seq, "domain%d %*pb", dcount++,
49 cpumask_pr_args(sched_domain_span(sd)));
Peter Zijlstra029632f2011-10-25 10:00:11 +020050 for (itype = CPU_IDLE; itype < CPU_MAX_IDLE_TYPES;
51 itype++) {
52 seq_printf(seq, " %u %u %u %u %u %u %u %u",
53 sd->lb_count[itype],
54 sd->lb_balanced[itype],
55 sd->lb_failed[itype],
56 sd->lb_imbalance[itype],
57 sd->lb_gained[itype],
58 sd->lb_hot_gained[itype],
59 sd->lb_nobusyq[itype],
60 sd->lb_nobusyg[itype]);
61 }
62 seq_printf(seq,
63 " %u %u %u %u %u %u %u %u %u %u %u %u\n",
64 sd->alb_count, sd->alb_failed, sd->alb_pushed,
65 sd->sbe_count, sd->sbe_balanced, sd->sbe_pushed,
66 sd->sbf_count, sd->sbf_balanced, sd->sbf_pushed,
67 sd->ttwu_wake_remote, sd->ttwu_move_affine,
68 sd->ttwu_move_balance);
69 }
70 rcu_read_unlock();
71#endif
72 }
Peter Zijlstra029632f2011-10-25 10:00:11 +020073 return 0;
74}
75
Nathan Zimmercb152ff2013-02-21 15:15:08 -080076/*
77 * This itererator needs some explanation.
78 * It returns 1 for the header position.
79 * This means 2 is cpu 0.
Ingo Molnar97fb7a02018-03-03 14:01:12 +010080 * In a hotplugged system some CPUs, including cpu 0, may be missing so we have
81 * to use cpumask_* to iterate over the CPUs.
Nathan Zimmercb152ff2013-02-21 15:15:08 -080082 */
83static void *schedstat_start(struct seq_file *file, loff_t *offset)
84{
85 unsigned long n = *offset;
86
87 if (n == 0)
88 return (void *) 1;
89
90 n--;
91
92 if (n > 0)
93 n = cpumask_next(n - 1, cpu_online_mask);
94 else
95 n = cpumask_first(cpu_online_mask);
96
97 *offset = n + 1;
98
99 if (n < nr_cpu_ids)
100 return (void *)(unsigned long)(n + 2);
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100101
Nathan Zimmercb152ff2013-02-21 15:15:08 -0800102 return NULL;
103}
104
105static void *schedstat_next(struct seq_file *file, void *data, loff_t *offset)
106{
107 (*offset)++;
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100108
Nathan Zimmercb152ff2013-02-21 15:15:08 -0800109 return schedstat_start(file, offset);
110}
111
112static void schedstat_stop(struct seq_file *file, void *data)
113{
114}
115
116static const struct seq_operations schedstat_sops = {
117 .start = schedstat_start,
118 .next = schedstat_next,
119 .stop = schedstat_stop,
120 .show = show_schedstat,
121};
122
Peter Zijlstra029632f2011-10-25 10:00:11 +0200123static int __init proc_schedstat_init(void)
124{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +0200125 proc_create_seq("schedstat", 0, NULL, &schedstat_sops);
Peter Zijlstra029632f2011-10-25 10:00:11 +0200126 return 0;
127}
Paul Gortmakerc96d6662014-04-03 14:48:35 -0700128subsys_initcall(proc_schedstat_init);