blob: e387a642632b3809d3a799e17f27f85c4848b91f [file] [log] [blame]
Paul E. McKenney64db4cf2008-12-18 21:55:32 +01001/*
2 * Read-Copy Update tracing for classic implementation
3 *
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.
8 *
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.
13 *
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.
17 *
18 * Copyright IBM Corporation, 2008
19 *
20 * Papers: http://www.rdrop.com/users/paulmck/RCU
21 *
22 * For detailed explanation of Read-Copy Update mechanism see -
Paul E. McKenneya71fca52009-09-18 10:28:19 -070023 * Documentation/RCU
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010024 *
25 */
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>
Arun Sharma600634972011-07-26 16:09:06 -070034#include <linux/atomic.h>
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010035#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>
45
Paul E. McKenney9f77da92009-08-22 13:56:45 -070046#define RCU_TREE_NONCORE
Ingo Molnar6258c4f2009-03-25 16:42:24 +010047#include "rcutree.h"
48
Michael Wang374b9282012-09-20 08:51:03 +080049static int r_open(struct inode *inode, struct file *file,
50 const struct seq_operations *op)
51{
52 int ret = seq_open(file, op);
53 if (!ret) {
54 struct seq_file *m = (struct seq_file *)file->private_data;
55 m->private = inode->i_private;
56 }
57 return ret;
58}
59
60static void *r_start(struct seq_file *m, loff_t *pos)
61{
62 struct rcu_state *rsp = (struct rcu_state *)m->private;
63 *pos = cpumask_next(*pos - 1, cpu_possible_mask);
64 if ((*pos) < nr_cpu_ids)
65 return per_cpu_ptr(rsp->rda, *pos);
66 return NULL;
67}
68
69static void *r_next(struct seq_file *m, void *v, loff_t *pos)
70{
71 (*pos)++;
72 return r_start(m, pos);
73}
74
75static void r_stop(struct seq_file *m, void *v)
76{
77}
78
Paul E. McKenneyd7e187c82012-05-25 11:49:15 -070079static int show_rcubarrier(struct seq_file *m, void *unused)
80{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -070081 struct rcu_state *rsp;
82
83 for_each_rcu_flavor(rsp)
Paul E. McKenney1331e7a2012-08-02 17:43:50 -070084 seq_printf(m, "%s: bcc: %d nbd: %lu\n",
85 rsp->name,
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -070086 atomic_read(&rsp->barrier_cpu_count),
87 rsp->n_barrier_done);
Paul E. McKenneyd7e187c82012-05-25 11:49:15 -070088 return 0;
89}
90
91static int rcubarrier_open(struct inode *inode, struct file *file)
92{
93 return single_open(file, show_rcubarrier, NULL);
94}
95
96static const struct file_operations rcubarrier_fops = {
97 .owner = THIS_MODULE,
98 .open = rcubarrier_open,
99 .read = seq_read,
100 .llseek = seq_lseek,
101 .release = single_release,
102};
103
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700104#ifdef CONFIG_RCU_BOOST
105
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700106static char convert_kthread_status(unsigned int kthread_status)
107{
108 if (kthread_status > RCU_KTHREAD_MAX)
109 return '?';
Paul E. McKenney15ba0ba2011-04-06 16:01:16 -0700110 return "SRWOY"[kthread_status];
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700111}
112
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700113#endif /* #ifdef CONFIG_RCU_BOOST */
114
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100115static void print_one_rcu_data(struct seq_file *m, struct rcu_data *rdp)
116{
117 if (!rdp->beenonline)
118 return;
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -0700119 seq_printf(m, "%3d%cc=%lu g=%lu pq=%d qp=%d",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100120 rdp->cpu,
121 cpu_is_offline(rdp->cpu) ? '!' : ' ',
122 rdp->completed, rdp->gpnum,
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -0700123 rdp->passed_quiesce, rdp->qs_pending);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700124 seq_printf(m, " dt=%d/%llx/%d df=%lu",
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700125 atomic_read(&rdp->dynticks->dynticks),
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100126 rdp->dynticks->dynticks_nesting,
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700127 rdp->dynticks->dynticks_nmi_nesting,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100128 rdp->dynticks_fqs);
Paul E. McKenney2036d942012-01-30 17:02:47 -0800129 seq_printf(m, " of=%lu", rdp->offline_fqs);
Paul E. McKenney486e2592012-01-06 14:11:30 -0800130 seq_printf(m, " ql=%ld/%ld qs=%c%c%c%c",
131 rdp->qlen_lazy, rdp->qlen,
Paul E. McKenney0ac3d132011-03-28 15:47:07 -0700132 ".N"[rdp->nxttail[RCU_NEXT_READY_TAIL] !=
133 rdp->nxttail[RCU_NEXT_TAIL]],
134 ".R"[rdp->nxttail[RCU_WAIT_TAIL] !=
135 rdp->nxttail[RCU_NEXT_READY_TAIL]],
136 ".W"[rdp->nxttail[RCU_DONE_TAIL] !=
137 rdp->nxttail[RCU_WAIT_TAIL]],
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700138 ".D"[&rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL]]);
139#ifdef CONFIG_RCU_BOOST
Paul E. McKenney62ab7072012-07-16 10:42:38 +0000140 seq_printf(m, " kt=%d/%c ktl=%x",
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700141 per_cpu(rcu_cpu_has_work, rdp->cpu),
142 convert_kthread_status(per_cpu(rcu_cpu_kthread_status,
143 rdp->cpu)),
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700144 per_cpu(rcu_cpu_kthread_loops, rdp->cpu) & 0xffff);
145#endif /* #ifdef CONFIG_RCU_BOOST */
146 seq_printf(m, " b=%ld", rdp->blimit);
Paul E. McKenney269dcc12010-09-07 14:23:09 -0700147 seq_printf(m, " ci=%lu co=%lu ca=%lu\n",
148 rdp->n_cbs_invoked, rdp->n_cbs_orphaned, rdp->n_cbs_adopted);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100149}
150
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100151static int show_rcudata(struct seq_file *m, void *unused)
152{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700153 int cpu;
154 struct rcu_state *rsp;
155
156 for_each_rcu_flavor(rsp) {
157 seq_printf(m, "%s:\n", rsp->name);
158 for_each_possible_cpu(cpu)
159 print_one_rcu_data(m, per_cpu_ptr(rsp->rda, cpu));
160 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100161 return 0;
162}
163
164static int rcudata_open(struct inode *inode, struct file *file)
165{
166 return single_open(file, show_rcudata, NULL);
167}
168
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700169static const struct file_operations rcudata_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100170 .owner = THIS_MODULE,
171 .open = rcudata_open,
172 .read = seq_read,
173 .llseek = seq_lseek,
174 .release = single_release,
175};
176
Michael Wang878eda72012-09-20 08:51:04 +0800177static int new_show_rcudata(struct seq_file *m, void *v)
178{
179 print_one_rcu_data(m, (struct rcu_data *)v);
180 return 0;
181}
182
183static const struct seq_operations new_rcudate_op = {
184 .start = r_start,
185 .next = r_next,
186 .stop = r_stop,
187 .show = new_show_rcudata,
188};
189
190static int new_rcudata_open(struct inode *inode, struct file *file)
191{
192 return r_open(inode, file, &new_rcudate_op);
193}
194
195static const struct file_operations new_rcudata_fops = {
196 .owner = THIS_MODULE,
197 .open = new_rcudata_open,
198 .read = seq_read,
199 .llseek = no_llseek,
200 .release = seq_release,
201};
202
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100203static void print_one_rcu_data_csv(struct seq_file *m, struct rcu_data *rdp)
204{
205 if (!rdp->beenonline)
206 return;
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -0700207 seq_printf(m, "%d,%s,%lu,%lu,%d,%d",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100208 rdp->cpu,
Paul E. McKenney5699ed82009-08-22 13:56:48 -0700209 cpu_is_offline(rdp->cpu) ? "\"N\"" : "\"Y\"",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100210 rdp->completed, rdp->gpnum,
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -0700211 rdp->passed_quiesce, rdp->qs_pending);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700212 seq_printf(m, ",%d,%llx,%d,%lu",
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700213 atomic_read(&rdp->dynticks->dynticks),
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100214 rdp->dynticks->dynticks_nesting,
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700215 rdp->dynticks->dynticks_nmi_nesting,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100216 rdp->dynticks_fqs);
Paul E. McKenney2036d942012-01-30 17:02:47 -0800217 seq_printf(m, ",%lu", rdp->offline_fqs);
Paul E. McKenney486e2592012-01-06 14:11:30 -0800218 seq_printf(m, ",%ld,%ld,\"%c%c%c%c\"", rdp->qlen_lazy, rdp->qlen,
Paul E. McKenney0ac3d132011-03-28 15:47:07 -0700219 ".N"[rdp->nxttail[RCU_NEXT_READY_TAIL] !=
220 rdp->nxttail[RCU_NEXT_TAIL]],
221 ".R"[rdp->nxttail[RCU_WAIT_TAIL] !=
222 rdp->nxttail[RCU_NEXT_READY_TAIL]],
223 ".W"[rdp->nxttail[RCU_DONE_TAIL] !=
224 rdp->nxttail[RCU_WAIT_TAIL]],
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700225 ".D"[&rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL]]);
226#ifdef CONFIG_RCU_BOOST
227 seq_printf(m, ",%d,\"%c\"",
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700228 per_cpu(rcu_cpu_has_work, rdp->cpu),
229 convert_kthread_status(per_cpu(rcu_cpu_kthread_status,
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700230 rdp->cpu)));
231#endif /* #ifdef CONFIG_RCU_BOOST */
232 seq_printf(m, ",%ld", rdp->blimit);
Paul E. McKenney269dcc12010-09-07 14:23:09 -0700233 seq_printf(m, ",%lu,%lu,%lu\n",
234 rdp->n_cbs_invoked, rdp->n_cbs_orphaned, rdp->n_cbs_adopted);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100235}
236
237static int show_rcudata_csv(struct seq_file *m, void *unused)
238{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700239 int cpu;
240 struct rcu_state *rsp;
241
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -0700242 seq_puts(m, "\"CPU\",\"Online?\",\"c\",\"g\",\"pq\",\"pq\",");
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700243 seq_puts(m, "\"dt\",\"dt nesting\",\"dt NMI nesting\",\"df\",");
Paul E. McKenney2036d942012-01-30 17:02:47 -0800244 seq_puts(m, "\"of\",\"qll\",\"ql\",\"qs\"");
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700245#ifdef CONFIG_RCU_BOOST
246 seq_puts(m, "\"kt\",\"ktl\"");
247#endif /* #ifdef CONFIG_RCU_BOOST */
248 seq_puts(m, ",\"b\",\"ci\",\"co\",\"ca\"\n");
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700249 for_each_rcu_flavor(rsp) {
250 seq_printf(m, "\"%s:\"\n", rsp->name);
251 for_each_possible_cpu(cpu)
252 print_one_rcu_data_csv(m, per_cpu_ptr(rsp->rda, cpu));
253 }
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100254 return 0;
255}
256
257static int rcudata_csv_open(struct inode *inode, struct file *file)
258{
259 return single_open(file, show_rcudata_csv, NULL);
260}
261
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700262static const struct file_operations rcudata_csv_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100263 .owner = THIS_MODULE,
264 .open = rcudata_csv_open,
265 .read = seq_read,
266 .llseek = seq_lseek,
267 .release = single_release,
268};
269
Michael Wangd29200e2012-09-20 08:51:05 +0800270static int new_show_rcudata_csv(struct seq_file *m, void *v)
271{
272 struct rcu_data *rdp = (struct rcu_data *)v;
273 if (cpumask_first(cpu_possible_mask) == rdp->cpu) {
274 seq_puts(m, "\"CPU\",\"Online?\",\"c\",\"g\",\"pq\",\"pq\",");
275 seq_puts(m, "\"dt\",\"dt nesting\",\"dt NMI nesting\",\"df\",");
276 seq_puts(m, "\"of\",\"qll\",\"ql\",\"qs\"");
277#ifdef CONFIG_RCU_BOOST
278 seq_puts(m, "\"kt\",\"ktl\"");
279#endif /* #ifdef CONFIG_RCU_BOOST */
280 seq_puts(m, ",\"b\",\"ci\",\"co\",\"ca\"\n");
281 }
282
283 print_one_rcu_data_csv(m, rdp);
284 return 0;
285}
286
287static const struct seq_operations new_rcudate_csv_op = {
288 .start = r_start,
289 .next = r_next,
290 .stop = r_stop,
291 .show = new_show_rcudata_csv,
292};
293
294static int new_rcudata_csv_open(struct inode *inode, struct file *file)
295{
296 return r_open(inode, file, &new_rcudate_csv_op);
297}
298
299static const struct file_operations new_rcudata_csv_fops = {
300 .owner = THIS_MODULE,
301 .open = new_rcudata_csv_open,
302 .read = seq_read,
303 .llseek = no_llseek,
304 .release = seq_release,
305};
306
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800307#ifdef CONFIG_RCU_BOOST
308
309static void print_one_rcu_node_boost(struct seq_file *m, struct rcu_node *rnp)
310{
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700311 seq_printf(m, "%d:%d tasks=%c%c%c%c kt=%c ntb=%lu neb=%lu nnb=%lu ",
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800312 rnp->grplo, rnp->grphi,
313 "T."[list_empty(&rnp->blkd_tasks)],
314 "N."[!rnp->gp_tasks],
315 "E."[!rnp->exp_tasks],
316 "B."[!rnp->boost_tasks],
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700317 convert_kthread_status(rnp->boost_kthread_status),
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800318 rnp->n_tasks_boosted, rnp->n_exp_boosts,
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700319 rnp->n_normal_boosts);
320 seq_printf(m, "j=%04x bt=%04x\n",
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800321 (int)(jiffies & 0xffff),
322 (int)(rnp->boost_time & 0xffff));
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700323 seq_printf(m, " balk: nt=%lu egt=%lu bt=%lu nb=%lu ny=%lu nos=%lu\n",
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800324 rnp->n_balk_blkd_tasks,
325 rnp->n_balk_exp_gp_tasks,
326 rnp->n_balk_boost_tasks,
327 rnp->n_balk_notblocked,
328 rnp->n_balk_notyet,
329 rnp->n_balk_nos);
330}
331
332static int show_rcu_node_boost(struct seq_file *m, void *unused)
333{
334 struct rcu_node *rnp;
335
336 rcu_for_each_leaf_node(&rcu_preempt_state, rnp)
337 print_one_rcu_node_boost(m, rnp);
338 return 0;
339}
340
341static int rcu_node_boost_open(struct inode *inode, struct file *file)
342{
343 return single_open(file, show_rcu_node_boost, NULL);
344}
345
346static const struct file_operations rcu_node_boost_fops = {
347 .owner = THIS_MODULE,
348 .open = rcu_node_boost_open,
349 .read = seq_read,
350 .llseek = seq_lseek,
351 .release = single_release,
352};
353
354/*
355 * Create the rcuboost debugfs entry. Standard error return.
356 */
357static int rcu_boost_trace_create_file(struct dentry *rcudir)
358{
359 return !debugfs_create_file("rcuboost", 0444, rcudir, NULL,
360 &rcu_node_boost_fops);
361}
362
363#else /* #ifdef CONFIG_RCU_BOOST */
364
365static int rcu_boost_trace_create_file(struct dentry *rcudir)
366{
367 return 0; /* There cannot be an error if we didn't create it! */
368}
369
370#endif /* #else #ifdef CONFIG_RCU_BOOST */
371
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100372static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp)
373{
Paul E. McKenney20133cf2010-02-22 17:05:01 -0800374 unsigned long gpnum;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100375 int level = 0;
376 struct rcu_node *rnp;
377
Paul E. McKenney3397e042009-10-14 16:36:38 -0700378 gpnum = rsp->gpnum;
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700379 seq_printf(m, "%s: c=%lu g=%lu s=%d jfq=%ld j=%x ",
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700380 rsp->name, rsp->completed, gpnum, rsp->fqs_state,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100381 (long)(rsp->jiffies_force_qs - jiffies),
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700382 (int)(jiffies & 0xffff));
383 seq_printf(m, "nfqs=%lu/nfqsng=%lu(%lu) fqlh=%lu oqlen=%ld/%ld\n",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100384 rsp->n_force_qs, rsp->n_force_qs_ngp,
385 rsp->n_force_qs - rsp->n_force_qs_ngp,
Paul E. McKenneyb1420f12012-03-01 13:18:08 -0800386 rsp->n_force_qs_lh, rsp->qlen_lazy, rsp->qlen);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -0700387 for (rnp = &rsp->node[0]; rnp - &rsp->node[0] < rcu_num_nodes; rnp++) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100388 if (rnp->level != level) {
389 seq_puts(m, "\n");
390 level = rnp->level;
391 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800392 seq_printf(m, "%lx/%lx %c%c>%c %d:%d ^%d ",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100393 rnp->qsmask, rnp->qsmaskinit,
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800394 ".G"[rnp->gp_tasks != NULL],
395 ".E"[rnp->exp_tasks != NULL],
396 ".T"[!list_empty(&rnp->blkd_tasks)],
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100397 rnp->grplo, rnp->grphi, rnp->grpnum);
398 }
399 seq_puts(m, "\n");
400}
401
402static int show_rcuhier(struct seq_file *m, void *unused)
403{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700404 struct rcu_state *rsp;
405
406 for_each_rcu_flavor(rsp)
407 print_one_rcu_state(m, rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100408 return 0;
409}
410
411static int rcuhier_open(struct inode *inode, struct file *file)
412{
413 return single_open(file, show_rcuhier, NULL);
414}
415
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700416static const struct file_operations rcuhier_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100417 .owner = THIS_MODULE,
418 .open = rcuhier_open,
419 .read = seq_read,
420 .llseek = seq_lseek,
421 .release = single_release,
422};
423
Paul E. McKenney15ba0ba2011-04-06 16:01:16 -0700424static void show_one_rcugp(struct seq_file *m, struct rcu_state *rsp)
425{
426 unsigned long flags;
427 unsigned long completed;
428 unsigned long gpnum;
429 unsigned long gpage;
430 unsigned long gpmax;
431 struct rcu_node *rnp = &rsp->node[0];
432
433 raw_spin_lock_irqsave(&rnp->lock, flags);
434 completed = rsp->completed;
435 gpnum = rsp->gpnum;
436 if (rsp->completed == rsp->gpnum)
437 gpage = 0;
438 else
439 gpage = jiffies - rsp->gp_start;
440 gpmax = rsp->gp_max;
441 raw_spin_unlock_irqrestore(&rnp->lock, flags);
442 seq_printf(m, "%s: completed=%ld gpnum=%lu age=%ld max=%ld\n",
443 rsp->name, completed, gpnum, gpage, gpmax);
444}
445
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100446static int show_rcugp(struct seq_file *m, void *unused)
447{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700448 struct rcu_state *rsp;
449
450 for_each_rcu_flavor(rsp)
451 show_one_rcugp(m, rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100452 return 0;
453}
454
455static int rcugp_open(struct inode *inode, struct file *file)
456{
457 return single_open(file, show_rcugp, NULL);
458}
459
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700460static const struct file_operations rcugp_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100461 .owner = THIS_MODULE,
462 .open = rcugp_open,
463 .read = seq_read,
464 .llseek = seq_lseek,
465 .release = single_release,
466};
467
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700468static void print_one_rcu_pending(struct seq_file *m, struct rcu_data *rdp)
469{
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700470 seq_printf(m, "%3d%cnp=%ld ",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700471 rdp->cpu,
472 cpu_is_offline(rdp->cpu) ? '!' : ' ',
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700473 rdp->n_rcu_pending);
474 seq_printf(m, "qsp=%ld rpq=%ld cbr=%ld cng=%ld ",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700475 rdp->n_rp_qs_pending,
Paul E. McKenneyd21670a2010-04-14 17:39:26 -0700476 rdp->n_rp_report_qs,
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700477 rdp->n_rp_cb_ready,
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700478 rdp->n_rp_cpu_needs_gp);
Paul E. McKenney4605c012012-06-26 14:00:48 -0700479 seq_printf(m, "gpc=%ld gps=%ld nn=%ld\n",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700480 rdp->n_rp_gp_completed,
481 rdp->n_rp_gp_started,
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700482 rdp->n_rp_need_nothing);
483}
484
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700485static int show_rcu_pending(struct seq_file *m, void *unused)
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700486{
487 int cpu;
488 struct rcu_data *rdp;
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700489 struct rcu_state *rsp;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700490
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700491 for_each_rcu_flavor(rsp) {
492 seq_printf(m, "%s:\n", rsp->name);
493 for_each_possible_cpu(cpu) {
494 rdp = per_cpu_ptr(rsp->rda, cpu);
495 if (rdp->beenonline)
496 print_one_rcu_pending(m, rdp);
497 }
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700498 }
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700499 return 0;
500}
501
502static int rcu_pending_open(struct inode *inode, struct file *file)
503{
504 return single_open(file, show_rcu_pending, NULL);
505}
506
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700507static const struct file_operations rcu_pending_fops = {
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700508 .owner = THIS_MODULE,
509 .open = rcu_pending_open,
510 .read = seq_read,
511 .llseek = seq_lseek,
512 .release = single_release,
513};
514
Paul E. McKenney4a298652011-04-03 21:33:51 -0700515static int show_rcutorture(struct seq_file *m, void *unused)
516{
517 seq_printf(m, "rcutorture test sequence: %lu %s\n",
518 rcutorture_testseq >> 1,
519 (rcutorture_testseq & 0x1) ? "(test in progress)" : "");
520 seq_printf(m, "rcutorture update version number: %lu\n",
521 rcutorture_vernum);
522 return 0;
523}
524
525static int rcutorture_open(struct inode *inode, struct file *file)
526{
527 return single_open(file, show_rcutorture, NULL);
528}
529
530static const struct file_operations rcutorture_fops = {
531 .owner = THIS_MODULE,
532 .open = rcutorture_open,
533 .read = seq_read,
534 .llseek = seq_lseek,
535 .release = single_release,
536};
537
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700538static struct dentry *rcudir;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700539
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700540static int __init rcutree_trace_init(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100541{
Michael Wang573bcd402012-09-20 08:51:02 +0800542 struct rcu_state *rsp;
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700543 struct dentry *retval;
Michael Wang573bcd402012-09-20 08:51:02 +0800544 struct dentry *rspdir;
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700545
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100546 rcudir = debugfs_create_dir("rcu", NULL);
547 if (!rcudir)
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700548 goto free_out;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100549
Michael Wang573bcd402012-09-20 08:51:02 +0800550 for_each_rcu_flavor(rsp) {
551 rspdir = debugfs_create_dir(rsp->name, rcudir);
552 if (!rspdir)
553 goto free_out;
Michael Wang878eda72012-09-20 08:51:04 +0800554
555 retval = debugfs_create_file("rcudata", 0444,
556 rspdir, rsp, &new_rcudata_fops);
557 if (!retval)
558 goto free_out;
Michael Wangd29200e2012-09-20 08:51:05 +0800559
560 retval = debugfs_create_file("rcudata.csv", 0444,
561 rspdir, rsp, &new_rcudata_csv_fops);
562 if (!retval)
563 goto free_out;
Michael Wang573bcd402012-09-20 08:51:02 +0800564 }
565
Paul E. McKenneyd7e187c82012-05-25 11:49:15 -0700566 retval = debugfs_create_file("rcubarrier", 0444, rcudir,
567 NULL, &rcubarrier_fops);
568 if (!retval)
569 goto free_out;
570
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700571 retval = debugfs_create_file("rcudata", 0444, rcudir,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100572 NULL, &rcudata_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700573 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100574 goto free_out;
575
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700576 retval = debugfs_create_file("rcudata.csv", 0444, rcudir,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100577 NULL, &rcudata_csv_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700578 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100579 goto free_out;
580
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800581 if (rcu_boost_trace_create_file(rcudir))
582 goto free_out;
583
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700584 retval = debugfs_create_file("rcugp", 0444, rcudir, NULL, &rcugp_fops);
585 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100586 goto free_out;
587
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700588 retval = debugfs_create_file("rcuhier", 0444, rcudir,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100589 NULL, &rcuhier_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700590 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100591 goto free_out;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700592
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700593 retval = debugfs_create_file("rcu_pending", 0444, rcudir,
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700594 NULL, &rcu_pending_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700595 if (!retval)
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700596 goto free_out;
Paul E. McKenney4a298652011-04-03 21:33:51 -0700597
598 retval = debugfs_create_file("rcutorture", 0444, rcudir,
599 NULL, &rcutorture_fops);
600 if (!retval)
601 goto free_out;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100602 return 0;
603free_out:
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700604 debugfs_remove_recursive(rcudir);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100605 return 1;
606}
607
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700608static void __exit rcutree_trace_cleanup(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100609{
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700610 debugfs_remove_recursive(rcudir);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100611}
612
613
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700614module_init(rcutree_trace_init);
615module_exit(rcutree_trace_cleanup);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100616
617MODULE_AUTHOR("Paul E. McKenney");
618MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation");
619MODULE_LICENSE("GPL");