Add linux-next specific files for 20110421
[linux-2.6/next.git] / kernel / rcutree_trace.c
blob1cedf94e2c4fe6aed913dac18211857965d00c77
1 /*
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 -
23 * Documentation/RCU
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>
46 #define RCU_TREE_NONCORE
47 #include "rcutree.h"
49 static void print_one_rcu_data(struct seq_file *m, struct rcu_data *rdp)
51 if (!rdp->beenonline)
52 return;
53 seq_printf(m, "%3d%cc=%lu g=%lu pq=%d pqc=%lu qp=%d",
54 rdp->cpu,
55 cpu_is_offline(rdp->cpu) ? '!' : ' ',
56 rdp->completed, rdp->gpnum,
57 rdp->passed_quiesc, rdp->passed_quiesc_completed,
58 rdp->qs_pending);
59 #ifdef CONFIG_NO_HZ
60 seq_printf(m, " dt=%d/%d/%d df=%lu",
61 atomic_read(&rdp->dynticks->dynticks),
62 rdp->dynticks->dynticks_nesting,
63 rdp->dynticks->dynticks_nmi_nesting,
64 rdp->dynticks_fqs);
65 #endif /* #ifdef CONFIG_NO_HZ */
66 seq_printf(m, " of=%lu ri=%lu", rdp->offline_fqs, rdp->resched_ipi);
67 seq_printf(m, " ql=%ld b=%ld", rdp->qlen, rdp->blimit);
68 seq_printf(m, " ci=%lu co=%lu ca=%lu\n",
69 rdp->n_cbs_invoked, rdp->n_cbs_orphaned, rdp->n_cbs_adopted);
72 #define PRINT_RCU_DATA(name, func, m) \
73 do { \
74 int _p_r_d_i; \
76 for_each_possible_cpu(_p_r_d_i) \
77 func(m, &per_cpu(name, _p_r_d_i)); \
78 } while (0)
80 static int show_rcudata(struct seq_file *m, void *unused)
82 #ifdef CONFIG_TREE_PREEMPT_RCU
83 seq_puts(m, "rcu_preempt:\n");
84 PRINT_RCU_DATA(rcu_preempt_data, print_one_rcu_data, m);
85 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
86 seq_puts(m, "rcu_sched:\n");
87 PRINT_RCU_DATA(rcu_sched_data, print_one_rcu_data, m);
88 seq_puts(m, "rcu_bh:\n");
89 PRINT_RCU_DATA(rcu_bh_data, print_one_rcu_data, m);
90 return 0;
93 static int rcudata_open(struct inode *inode, struct file *file)
95 return single_open(file, show_rcudata, NULL);
98 static const struct file_operations rcudata_fops = {
99 .owner = THIS_MODULE,
100 .open = rcudata_open,
101 .read = seq_read,
102 .llseek = seq_lseek,
103 .release = single_release,
106 static void print_one_rcu_data_csv(struct seq_file *m, struct rcu_data *rdp)
108 if (!rdp->beenonline)
109 return;
110 seq_printf(m, "%d,%s,%lu,%lu,%d,%lu,%d",
111 rdp->cpu,
112 cpu_is_offline(rdp->cpu) ? "\"N\"" : "\"Y\"",
113 rdp->completed, rdp->gpnum,
114 rdp->passed_quiesc, rdp->passed_quiesc_completed,
115 rdp->qs_pending);
116 #ifdef CONFIG_NO_HZ
117 seq_printf(m, ",%d,%d,%d,%lu",
118 atomic_read(&rdp->dynticks->dynticks),
119 rdp->dynticks->dynticks_nesting,
120 rdp->dynticks->dynticks_nmi_nesting,
121 rdp->dynticks_fqs);
122 #endif /* #ifdef CONFIG_NO_HZ */
123 seq_printf(m, ",%lu,%lu", rdp->offline_fqs, rdp->resched_ipi);
124 seq_printf(m, ",%ld,%ld", rdp->qlen, rdp->blimit);
125 seq_printf(m, ",%lu,%lu,%lu\n",
126 rdp->n_cbs_invoked, rdp->n_cbs_orphaned, rdp->n_cbs_adopted);
129 static int show_rcudata_csv(struct seq_file *m, void *unused)
131 seq_puts(m, "\"CPU\",\"Online?\",\"c\",\"g\",\"pq\",\"pqc\",\"pq\",");
132 #ifdef CONFIG_NO_HZ
133 seq_puts(m, "\"dt\",\"dt nesting\",\"dt NMI nesting\",\"df\",");
134 #endif /* #ifdef CONFIG_NO_HZ */
135 seq_puts(m, "\"of\",\"ri\",\"ql\",\"b\",\"ci\",\"co\",\"ca\"\n");
136 #ifdef CONFIG_TREE_PREEMPT_RCU
137 seq_puts(m, "\"rcu_preempt:\"\n");
138 PRINT_RCU_DATA(rcu_preempt_data, print_one_rcu_data_csv, m);
139 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
140 seq_puts(m, "\"rcu_sched:\"\n");
141 PRINT_RCU_DATA(rcu_sched_data, print_one_rcu_data_csv, m);
142 seq_puts(m, "\"rcu_bh:\"\n");
143 PRINT_RCU_DATA(rcu_bh_data, print_one_rcu_data_csv, m);
144 return 0;
147 static int rcudata_csv_open(struct inode *inode, struct file *file)
149 return single_open(file, show_rcudata_csv, NULL);
152 static const struct file_operations rcudata_csv_fops = {
153 .owner = THIS_MODULE,
154 .open = rcudata_csv_open,
155 .read = seq_read,
156 .llseek = seq_lseek,
157 .release = single_release,
160 static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp)
162 unsigned long gpnum;
163 int level = 0;
164 struct rcu_node *rnp;
166 gpnum = rsp->gpnum;
167 seq_printf(m, "c=%lu g=%lu s=%d jfq=%ld j=%x "
168 "nfqs=%lu/nfqsng=%lu(%lu) fqlh=%lu\n",
169 rsp->completed, gpnum, rsp->signaled,
170 (long)(rsp->jiffies_force_qs - jiffies),
171 (int)(jiffies & 0xffff),
172 rsp->n_force_qs, rsp->n_force_qs_ngp,
173 rsp->n_force_qs - rsp->n_force_qs_ngp,
174 rsp->n_force_qs_lh);
175 for (rnp = &rsp->node[0]; rnp - &rsp->node[0] < NUM_RCU_NODES; rnp++) {
176 if (rnp->level != level) {
177 seq_puts(m, "\n");
178 level = rnp->level;
180 seq_printf(m, "%lx/%lx %c%c>%c %d:%d ^%d ",
181 rnp->qsmask, rnp->qsmaskinit,
182 ".G"[rnp->gp_tasks != NULL],
183 ".E"[rnp->exp_tasks != NULL],
184 ".T"[!list_empty(&rnp->blkd_tasks)],
185 rnp->grplo, rnp->grphi, rnp->grpnum);
187 seq_puts(m, "\n");
190 static int show_rcuhier(struct seq_file *m, void *unused)
192 #ifdef CONFIG_TREE_PREEMPT_RCU
193 seq_puts(m, "rcu_preempt:\n");
194 print_one_rcu_state(m, &rcu_preempt_state);
195 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
196 seq_puts(m, "rcu_sched:\n");
197 print_one_rcu_state(m, &rcu_sched_state);
198 seq_puts(m, "rcu_bh:\n");
199 print_one_rcu_state(m, &rcu_bh_state);
200 return 0;
203 static int rcuhier_open(struct inode *inode, struct file *file)
205 return single_open(file, show_rcuhier, NULL);
208 static const struct file_operations rcuhier_fops = {
209 .owner = THIS_MODULE,
210 .open = rcuhier_open,
211 .read = seq_read,
212 .llseek = seq_lseek,
213 .release = single_release,
216 static int show_rcugp(struct seq_file *m, void *unused)
218 #ifdef CONFIG_TREE_PREEMPT_RCU
219 seq_printf(m, "rcu_preempt: completed=%ld gpnum=%lu\n",
220 rcu_preempt_state.completed, rcu_preempt_state.gpnum);
221 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
222 seq_printf(m, "rcu_sched: completed=%ld gpnum=%lu\n",
223 rcu_sched_state.completed, rcu_sched_state.gpnum);
224 seq_printf(m, "rcu_bh: completed=%ld gpnum=%lu\n",
225 rcu_bh_state.completed, rcu_bh_state.gpnum);
226 return 0;
229 static int rcugp_open(struct inode *inode, struct file *file)
231 return single_open(file, show_rcugp, NULL);
234 static const struct file_operations rcugp_fops = {
235 .owner = THIS_MODULE,
236 .open = rcugp_open,
237 .read = seq_read,
238 .llseek = seq_lseek,
239 .release = single_release,
242 static void print_one_rcu_pending(struct seq_file *m, struct rcu_data *rdp)
244 seq_printf(m, "%3d%cnp=%ld "
245 "qsp=%ld rpq=%ld cbr=%ld cng=%ld "
246 "gpc=%ld gps=%ld nf=%ld nn=%ld\n",
247 rdp->cpu,
248 cpu_is_offline(rdp->cpu) ? '!' : ' ',
249 rdp->n_rcu_pending,
250 rdp->n_rp_qs_pending,
251 rdp->n_rp_report_qs,
252 rdp->n_rp_cb_ready,
253 rdp->n_rp_cpu_needs_gp,
254 rdp->n_rp_gp_completed,
255 rdp->n_rp_gp_started,
256 rdp->n_rp_need_fqs,
257 rdp->n_rp_need_nothing);
260 static void print_rcu_pendings(struct seq_file *m, struct rcu_state *rsp)
262 int cpu;
263 struct rcu_data *rdp;
265 for_each_possible_cpu(cpu) {
266 rdp = per_cpu_ptr(rsp->rda, cpu);
267 if (rdp->beenonline)
268 print_one_rcu_pending(m, rdp);
272 static int show_rcu_pending(struct seq_file *m, void *unused)
274 #ifdef CONFIG_TREE_PREEMPT_RCU
275 seq_puts(m, "rcu_preempt:\n");
276 print_rcu_pendings(m, &rcu_preempt_state);
277 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
278 seq_puts(m, "rcu_sched:\n");
279 print_rcu_pendings(m, &rcu_sched_state);
280 seq_puts(m, "rcu_bh:\n");
281 print_rcu_pendings(m, &rcu_bh_state);
282 return 0;
285 static int rcu_pending_open(struct inode *inode, struct file *file)
287 return single_open(file, show_rcu_pending, NULL);
290 static const struct file_operations rcu_pending_fops = {
291 .owner = THIS_MODULE,
292 .open = rcu_pending_open,
293 .read = seq_read,
294 .llseek = seq_lseek,
295 .release = single_release,
298 static struct dentry *rcudir;
300 static int __init rcutree_trace_init(void)
302 struct dentry *retval;
304 rcudir = debugfs_create_dir("rcu", NULL);
305 if (!rcudir)
306 goto free_out;
308 retval = debugfs_create_file("rcudata", 0444, rcudir,
309 NULL, &rcudata_fops);
310 if (!retval)
311 goto free_out;
313 retval = debugfs_create_file("rcudata.csv", 0444, rcudir,
314 NULL, &rcudata_csv_fops);
315 if (!retval)
316 goto free_out;
318 retval = debugfs_create_file("rcugp", 0444, rcudir, NULL, &rcugp_fops);
319 if (!retval)
320 goto free_out;
322 retval = debugfs_create_file("rcuhier", 0444, rcudir,
323 NULL, &rcuhier_fops);
324 if (!retval)
325 goto free_out;
327 retval = debugfs_create_file("rcu_pending", 0444, rcudir,
328 NULL, &rcu_pending_fops);
329 if (!retval)
330 goto free_out;
331 return 0;
332 free_out:
333 debugfs_remove_recursive(rcudir);
334 return 1;
337 static void __exit rcutree_trace_cleanup(void)
339 debugfs_remove_recursive(rcudir);
343 module_init(rcutree_trace_init);
344 module_exit(rcutree_trace_cleanup);
346 MODULE_AUTHOR("Paul E. McKenney");
347 MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation");
348 MODULE_LICENSE("GPL");