2 * Read-Copy Update tracing for classic implementation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 * Copyright IBM Corporation, 2008
20 * Papers: http://www.rdrop.com/users/paulmck/RCU
22 * For detailed explanation of Read-Copy Update mechanism see -
26 #include <linux/types.h>
27 #include <linux/kernel.h>
28 #include <linux/init.h>
29 #include <linux/spinlock.h>
30 #include <linux/smp.h>
31 #include <linux/rcupdate.h>
32 #include <linux/interrupt.h>
33 #include <linux/sched.h>
34 #include <asm/atomic.h>
35 #include <linux/bitops.h>
36 #include <linux/module.h>
37 #include <linux/completion.h>
38 #include <linux/moduleparam.h>
39 #include <linux/percpu.h>
40 #include <linux/notifier.h>
41 #include <linux/cpu.h>
42 #include <linux/mutex.h>
43 #include <linux/debugfs.h>
44 #include <linux/seq_file.h>
48 static void print_one_rcu_data(struct seq_file
*m
, struct rcu_data
*rdp
)
52 seq_printf(m
, "%3d%cc=%ld g=%ld pq=%d pqc=%ld qp=%d rpfq=%ld rp=%x",
54 cpu_is_offline(rdp
->cpu
) ? '!' : ' ',
55 rdp
->completed
, rdp
->gpnum
,
56 rdp
->passed_quiesc
, rdp
->passed_quiesc_completed
,
58 rdp
->n_rcu_pending_force_qs
- rdp
->n_rcu_pending
,
59 (int)(rdp
->n_rcu_pending
& 0xffff));
61 seq_printf(m
, " dt=%d/%d dn=%d df=%lu",
62 rdp
->dynticks
->dynticks
,
63 rdp
->dynticks
->dynticks_nesting
,
64 rdp
->dynticks
->dynticks_nmi
,
66 #endif /* #ifdef CONFIG_NO_HZ */
67 seq_printf(m
, " of=%lu ri=%lu", rdp
->offline_fqs
, rdp
->resched_ipi
);
68 seq_printf(m
, " ql=%ld b=%ld\n", rdp
->qlen
, rdp
->blimit
);
71 #define PRINT_RCU_DATA(name, func, m) \
75 for_each_possible_cpu(_p_r_d_i) \
76 func(m, &per_cpu(name, _p_r_d_i)); \
79 static int show_rcudata(struct seq_file
*m
, void *unused
)
81 seq_puts(m
, "rcu:\n");
82 PRINT_RCU_DATA(rcu_data
, print_one_rcu_data
, m
);
83 seq_puts(m
, "rcu_bh:\n");
84 PRINT_RCU_DATA(rcu_bh_data
, print_one_rcu_data
, m
);
88 static int rcudata_open(struct inode
*inode
, struct file
*file
)
90 return single_open(file
, show_rcudata
, NULL
);
93 static struct file_operations rcudata_fops
= {
98 .release
= single_release
,
101 static void print_one_rcu_data_csv(struct seq_file
*m
, struct rcu_data
*rdp
)
103 if (!rdp
->beenonline
)
105 seq_printf(m
, "%d,%s,%ld,%ld,%d,%ld,%d,%ld,%ld",
107 cpu_is_offline(rdp
->cpu
) ? "\"Y\"" : "\"N\"",
108 rdp
->completed
, rdp
->gpnum
,
109 rdp
->passed_quiesc
, rdp
->passed_quiesc_completed
,
111 rdp
->n_rcu_pending_force_qs
- rdp
->n_rcu_pending
,
114 seq_printf(m
, ",%d,%d,%d,%lu",
115 rdp
->dynticks
->dynticks
,
116 rdp
->dynticks
->dynticks_nesting
,
117 rdp
->dynticks
->dynticks_nmi
,
119 #endif /* #ifdef CONFIG_NO_HZ */
120 seq_printf(m
, ",%lu,%lu", rdp
->offline_fqs
, rdp
->resched_ipi
);
121 seq_printf(m
, ",%ld,%ld\n", rdp
->qlen
, rdp
->blimit
);
124 static int show_rcudata_csv(struct seq_file
*m
, void *unused
)
126 seq_puts(m
, "\"CPU\",\"Online?\",\"c\",\"g\",\"pq\",\"pqc\",\"pq\",\"rpfq\",\"rp\",");
128 seq_puts(m
, "\"dt\",\"dt nesting\",\"dn\",\"df\",");
129 #endif /* #ifdef CONFIG_NO_HZ */
130 seq_puts(m
, "\"of\",\"ri\",\"ql\",\"b\"\n");
131 seq_puts(m
, "\"rcu:\"\n");
132 PRINT_RCU_DATA(rcu_data
, print_one_rcu_data_csv
, m
);
133 seq_puts(m
, "\"rcu_bh:\"\n");
134 PRINT_RCU_DATA(rcu_bh_data
, print_one_rcu_data_csv
, m
);
138 static int rcudata_csv_open(struct inode
*inode
, struct file
*file
)
140 return single_open(file
, show_rcudata_csv
, NULL
);
143 static struct file_operations rcudata_csv_fops
= {
144 .owner
= THIS_MODULE
,
145 .open
= rcudata_csv_open
,
148 .release
= single_release
,
151 static void print_one_rcu_state(struct seq_file
*m
, struct rcu_state
*rsp
)
154 struct rcu_node
*rnp
;
156 seq_printf(m
, "c=%ld g=%ld s=%d jfq=%ld j=%x "
157 "nfqs=%lu/nfqsng=%lu(%lu) fqlh=%lu\n",
158 rsp
->completed
, rsp
->gpnum
, rsp
->signaled
,
159 (long)(rsp
->jiffies_force_qs
- jiffies
),
160 (int)(jiffies
& 0xffff),
161 rsp
->n_force_qs
, rsp
->n_force_qs_ngp
,
162 rsp
->n_force_qs
- rsp
->n_force_qs_ngp
,
164 for (rnp
= &rsp
->node
[0]; rnp
- &rsp
->node
[0] < NUM_RCU_NODES
; rnp
++) {
165 if (rnp
->level
!= level
) {
169 seq_printf(m
, "%lx/%lx %d:%d ^%d ",
170 rnp
->qsmask
, rnp
->qsmaskinit
,
171 rnp
->grplo
, rnp
->grphi
, rnp
->grpnum
);
176 static int show_rcuhier(struct seq_file
*m
, void *unused
)
178 seq_puts(m
, "rcu:\n");
179 print_one_rcu_state(m
, &rcu_state
);
180 seq_puts(m
, "rcu_bh:\n");
181 print_one_rcu_state(m
, &rcu_bh_state
);
185 static int rcuhier_open(struct inode
*inode
, struct file
*file
)
187 return single_open(file
, show_rcuhier
, NULL
);
190 static struct file_operations rcuhier_fops
= {
191 .owner
= THIS_MODULE
,
192 .open
= rcuhier_open
,
195 .release
= single_release
,
198 static int show_rcugp(struct seq_file
*m
, void *unused
)
200 seq_printf(m
, "rcu: completed=%ld gpnum=%ld\n",
201 rcu_state
.completed
, rcu_state
.gpnum
);
202 seq_printf(m
, "rcu_bh: completed=%ld gpnum=%ld\n",
203 rcu_bh_state
.completed
, rcu_bh_state
.gpnum
);
207 static int rcugp_open(struct inode
*inode
, struct file
*file
)
209 return single_open(file
, show_rcugp
, NULL
);
212 static struct file_operations rcugp_fops
= {
213 .owner
= THIS_MODULE
,
217 .release
= single_release
,
220 static struct dentry
*rcudir
, *datadir
, *datadir_csv
, *hierdir
, *gpdir
;
221 static int __init
rcuclassic_trace_init(void)
223 rcudir
= debugfs_create_dir("rcu", NULL
);
227 datadir
= debugfs_create_file("rcudata", 0444, rcudir
,
228 NULL
, &rcudata_fops
);
232 datadir_csv
= debugfs_create_file("rcudata.csv", 0444, rcudir
,
233 NULL
, &rcudata_csv_fops
);
237 gpdir
= debugfs_create_file("rcugp", 0444, rcudir
, NULL
, &rcugp_fops
);
241 hierdir
= debugfs_create_file("rcuhier", 0444, rcudir
,
242 NULL
, &rcuhier_fops
);
248 debugfs_remove(datadir
);
250 debugfs_remove(datadir_csv
);
252 debugfs_remove(gpdir
);
253 debugfs_remove(rcudir
);
258 static void __exit
rcuclassic_trace_cleanup(void)
260 debugfs_remove(datadir
);
261 debugfs_remove(datadir_csv
);
262 debugfs_remove(gpdir
);
263 debugfs_remove(hierdir
);
264 debugfs_remove(rcudir
);
268 module_init(rcuclassic_trace_init
);
269 module_exit(rcuclassic_trace_cleanup
);
271 MODULE_AUTHOR("Paul E. McKenney");
272 MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation");
273 MODULE_LICENSE("GPL");