blob: 0e2ab6427b64626a2e888d11d17ffdbb90a2c888 [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. McKenneyd7e187c2012-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. McKenneyd7e187c2012-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
Michael Wangc011c412012-09-20 08:51:07 +0800151static int show_rcudata(struct seq_file *m, void *v)
Michael Wang878eda72012-09-20 08:51:04 +0800152{
153 print_one_rcu_data(m, (struct rcu_data *)v);
154 return 0;
155}
156
Michael Wangc011c412012-09-20 08:51:07 +0800157static const struct seq_operations rcudate_op = {
Michael Wang878eda72012-09-20 08:51:04 +0800158 .start = r_start,
159 .next = r_next,
160 .stop = r_stop,
Michael Wangc011c412012-09-20 08:51:07 +0800161 .show = show_rcudata,
Michael Wang878eda72012-09-20 08:51:04 +0800162};
163
Michael Wangc011c412012-09-20 08:51:07 +0800164static int rcudata_open(struct inode *inode, struct file *file)
Michael Wang878eda72012-09-20 08:51:04 +0800165{
Michael Wangc011c412012-09-20 08:51:07 +0800166 return r_open(inode, file, &rcudate_op);
Michael Wang878eda72012-09-20 08:51:04 +0800167}
168
Michael Wangc011c412012-09-20 08:51:07 +0800169static const struct file_operations rcudata_fops = {
Michael Wang878eda72012-09-20 08:51:04 +0800170 .owner = THIS_MODULE,
Michael Wangc011c412012-09-20 08:51:07 +0800171 .open = rcudata_open,
Michael Wang878eda72012-09-20 08:51:04 +0800172 .read = seq_read,
173 .llseek = no_llseek,
174 .release = seq_release,
175};
176
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100177static void print_one_rcu_data_csv(struct seq_file *m, struct rcu_data *rdp)
178{
179 if (!rdp->beenonline)
180 return;
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -0700181 seq_printf(m, "%d,%s,%lu,%lu,%d,%d",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100182 rdp->cpu,
Paul E. McKenney5699ed82009-08-22 13:56:48 -0700183 cpu_is_offline(rdp->cpu) ? "\"N\"" : "\"Y\"",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100184 rdp->completed, rdp->gpnum,
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -0700185 rdp->passed_quiesce, rdp->qs_pending);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700186 seq_printf(m, ",%d,%llx,%d,%lu",
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700187 atomic_read(&rdp->dynticks->dynticks),
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100188 rdp->dynticks->dynticks_nesting,
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700189 rdp->dynticks->dynticks_nmi_nesting,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100190 rdp->dynticks_fqs);
Paul E. McKenney2036d942012-01-30 17:02:47 -0800191 seq_printf(m, ",%lu", rdp->offline_fqs);
Paul E. McKenney486e2592012-01-06 14:11:30 -0800192 seq_printf(m, ",%ld,%ld,\"%c%c%c%c\"", rdp->qlen_lazy, rdp->qlen,
Paul E. McKenney0ac3d132011-03-28 15:47:07 -0700193 ".N"[rdp->nxttail[RCU_NEXT_READY_TAIL] !=
194 rdp->nxttail[RCU_NEXT_TAIL]],
195 ".R"[rdp->nxttail[RCU_WAIT_TAIL] !=
196 rdp->nxttail[RCU_NEXT_READY_TAIL]],
197 ".W"[rdp->nxttail[RCU_DONE_TAIL] !=
198 rdp->nxttail[RCU_WAIT_TAIL]],
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700199 ".D"[&rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL]]);
200#ifdef CONFIG_RCU_BOOST
201 seq_printf(m, ",%d,\"%c\"",
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700202 per_cpu(rcu_cpu_has_work, rdp->cpu),
203 convert_kthread_status(per_cpu(rcu_cpu_kthread_status,
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700204 rdp->cpu)));
205#endif /* #ifdef CONFIG_RCU_BOOST */
206 seq_printf(m, ",%ld", rdp->blimit);
Paul E. McKenney269dcc12010-09-07 14:23:09 -0700207 seq_printf(m, ",%lu,%lu,%lu\n",
208 rdp->n_cbs_invoked, rdp->n_cbs_orphaned, rdp->n_cbs_adopted);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100209}
210
Michael Wangc011c412012-09-20 08:51:07 +0800211static int show_rcudata_csv(struct seq_file *m, void *v)
Michael Wangd29200e2012-09-20 08:51:05 +0800212{
213 struct rcu_data *rdp = (struct rcu_data *)v;
214 if (cpumask_first(cpu_possible_mask) == rdp->cpu) {
215 seq_puts(m, "\"CPU\",\"Online?\",\"c\",\"g\",\"pq\",\"pq\",");
216 seq_puts(m, "\"dt\",\"dt nesting\",\"dt NMI nesting\",\"df\",");
217 seq_puts(m, "\"of\",\"qll\",\"ql\",\"qs\"");
218#ifdef CONFIG_RCU_BOOST
219 seq_puts(m, "\"kt\",\"ktl\"");
220#endif /* #ifdef CONFIG_RCU_BOOST */
221 seq_puts(m, ",\"b\",\"ci\",\"co\",\"ca\"\n");
222 }
223
224 print_one_rcu_data_csv(m, rdp);
225 return 0;
226}
227
Michael Wangc011c412012-09-20 08:51:07 +0800228static const struct seq_operations rcudate_csv_op = {
Michael Wangd29200e2012-09-20 08:51:05 +0800229 .start = r_start,
230 .next = r_next,
231 .stop = r_stop,
Michael Wangc011c412012-09-20 08:51:07 +0800232 .show = show_rcudata_csv,
Michael Wangd29200e2012-09-20 08:51:05 +0800233};
234
Michael Wangc011c412012-09-20 08:51:07 +0800235static int rcudata_csv_open(struct inode *inode, struct file *file)
Michael Wangd29200e2012-09-20 08:51:05 +0800236{
Michael Wangc011c412012-09-20 08:51:07 +0800237 return r_open(inode, file, &rcudate_csv_op);
Michael Wangd29200e2012-09-20 08:51:05 +0800238}
239
Michael Wangc011c412012-09-20 08:51:07 +0800240static const struct file_operations rcudata_csv_fops = {
Michael Wangd29200e2012-09-20 08:51:05 +0800241 .owner = THIS_MODULE,
Michael Wangc011c412012-09-20 08:51:07 +0800242 .open = rcudata_csv_open,
Michael Wangd29200e2012-09-20 08:51:05 +0800243 .read = seq_read,
244 .llseek = no_llseek,
245 .release = seq_release,
246};
247
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800248#ifdef CONFIG_RCU_BOOST
249
250static void print_one_rcu_node_boost(struct seq_file *m, struct rcu_node *rnp)
251{
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700252 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 -0800253 rnp->grplo, rnp->grphi,
254 "T."[list_empty(&rnp->blkd_tasks)],
255 "N."[!rnp->gp_tasks],
256 "E."[!rnp->exp_tasks],
257 "B."[!rnp->boost_tasks],
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700258 convert_kthread_status(rnp->boost_kthread_status),
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800259 rnp->n_tasks_boosted, rnp->n_exp_boosts,
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700260 rnp->n_normal_boosts);
261 seq_printf(m, "j=%04x bt=%04x\n",
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800262 (int)(jiffies & 0xffff),
263 (int)(rnp->boost_time & 0xffff));
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700264 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 -0800265 rnp->n_balk_blkd_tasks,
266 rnp->n_balk_exp_gp_tasks,
267 rnp->n_balk_boost_tasks,
268 rnp->n_balk_notblocked,
269 rnp->n_balk_notyet,
270 rnp->n_balk_nos);
271}
272
273static int show_rcu_node_boost(struct seq_file *m, void *unused)
274{
275 struct rcu_node *rnp;
276
277 rcu_for_each_leaf_node(&rcu_preempt_state, rnp)
278 print_one_rcu_node_boost(m, rnp);
279 return 0;
280}
281
282static int rcu_node_boost_open(struct inode *inode, struct file *file)
283{
284 return single_open(file, show_rcu_node_boost, NULL);
285}
286
287static const struct file_operations rcu_node_boost_fops = {
288 .owner = THIS_MODULE,
289 .open = rcu_node_boost_open,
290 .read = seq_read,
291 .llseek = seq_lseek,
292 .release = single_release,
293};
294
295/*
296 * Create the rcuboost debugfs entry. Standard error return.
297 */
298static int rcu_boost_trace_create_file(struct dentry *rcudir)
299{
300 return !debugfs_create_file("rcuboost", 0444, rcudir, NULL,
301 &rcu_node_boost_fops);
302}
303
304#else /* #ifdef CONFIG_RCU_BOOST */
305
306static int rcu_boost_trace_create_file(struct dentry *rcudir)
307{
308 return 0; /* There cannot be an error if we didn't create it! */
309}
310
311#endif /* #else #ifdef CONFIG_RCU_BOOST */
312
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100313static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp)
314{
Paul E. McKenney20133cf2010-02-22 17:05:01 -0800315 unsigned long gpnum;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100316 int level = 0;
317 struct rcu_node *rnp;
318
Paul E. McKenney3397e042009-10-14 16:36:38 -0700319 gpnum = rsp->gpnum;
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700320 seq_printf(m, "%s: c=%lu g=%lu s=%d jfq=%ld j=%x ",
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700321 rsp->name, rsp->completed, gpnum, rsp->fqs_state,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100322 (long)(rsp->jiffies_force_qs - jiffies),
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700323 (int)(jiffies & 0xffff));
324 seq_printf(m, "nfqs=%lu/nfqsng=%lu(%lu) fqlh=%lu oqlen=%ld/%ld\n",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100325 rsp->n_force_qs, rsp->n_force_qs_ngp,
326 rsp->n_force_qs - rsp->n_force_qs_ngp,
Paul E. McKenneyb1420f12012-03-01 13:18:08 -0800327 rsp->n_force_qs_lh, rsp->qlen_lazy, rsp->qlen);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -0700328 for (rnp = &rsp->node[0]; rnp - &rsp->node[0] < rcu_num_nodes; rnp++) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100329 if (rnp->level != level) {
330 seq_puts(m, "\n");
331 level = rnp->level;
332 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800333 seq_printf(m, "%lx/%lx %c%c>%c %d:%d ^%d ",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100334 rnp->qsmask, rnp->qsmaskinit,
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800335 ".G"[rnp->gp_tasks != NULL],
336 ".E"[rnp->exp_tasks != NULL],
337 ".T"[!list_empty(&rnp->blkd_tasks)],
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100338 rnp->grplo, rnp->grphi, rnp->grpnum);
339 }
340 seq_puts(m, "\n");
341}
342
343static int show_rcuhier(struct seq_file *m, void *unused)
344{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700345 struct rcu_state *rsp;
346
347 for_each_rcu_flavor(rsp)
348 print_one_rcu_state(m, rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100349 return 0;
350}
351
352static int rcuhier_open(struct inode *inode, struct file *file)
353{
354 return single_open(file, show_rcuhier, NULL);
355}
356
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700357static const struct file_operations rcuhier_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100358 .owner = THIS_MODULE,
359 .open = rcuhier_open,
360 .read = seq_read,
361 .llseek = seq_lseek,
362 .release = single_release,
363};
364
Paul E. McKenney15ba0ba2011-04-06 16:01:16 -0700365static void show_one_rcugp(struct seq_file *m, struct rcu_state *rsp)
366{
367 unsigned long flags;
368 unsigned long completed;
369 unsigned long gpnum;
370 unsigned long gpage;
371 unsigned long gpmax;
372 struct rcu_node *rnp = &rsp->node[0];
373
374 raw_spin_lock_irqsave(&rnp->lock, flags);
375 completed = rsp->completed;
376 gpnum = rsp->gpnum;
377 if (rsp->completed == rsp->gpnum)
378 gpage = 0;
379 else
380 gpage = jiffies - rsp->gp_start;
381 gpmax = rsp->gp_max;
382 raw_spin_unlock_irqrestore(&rnp->lock, flags);
383 seq_printf(m, "%s: completed=%ld gpnum=%lu age=%ld max=%ld\n",
384 rsp->name, completed, gpnum, gpage, gpmax);
385}
386
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100387static int show_rcugp(struct seq_file *m, void *unused)
388{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700389 struct rcu_state *rsp;
390
391 for_each_rcu_flavor(rsp)
392 show_one_rcugp(m, rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100393 return 0;
394}
395
396static int rcugp_open(struct inode *inode, struct file *file)
397{
398 return single_open(file, show_rcugp, NULL);
399}
400
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700401static const struct file_operations rcugp_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100402 .owner = THIS_MODULE,
403 .open = rcugp_open,
404 .read = seq_read,
405 .llseek = seq_lseek,
406 .release = single_release,
407};
408
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700409static void print_one_rcu_pending(struct seq_file *m, struct rcu_data *rdp)
410{
Michael Wang51d0f162012-09-20 08:51:06 +0800411 if (!rdp->beenonline)
412 return;
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700413 seq_printf(m, "%3d%cnp=%ld ",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700414 rdp->cpu,
415 cpu_is_offline(rdp->cpu) ? '!' : ' ',
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700416 rdp->n_rcu_pending);
417 seq_printf(m, "qsp=%ld rpq=%ld cbr=%ld cng=%ld ",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700418 rdp->n_rp_qs_pending,
Paul E. McKenneyd21670a2010-04-14 17:39:26 -0700419 rdp->n_rp_report_qs,
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700420 rdp->n_rp_cb_ready,
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700421 rdp->n_rp_cpu_needs_gp);
Paul E. McKenney4605c012012-06-26 14:00:48 -0700422 seq_printf(m, "gpc=%ld gps=%ld nn=%ld\n",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700423 rdp->n_rp_gp_completed,
424 rdp->n_rp_gp_started,
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700425 rdp->n_rp_need_nothing);
426}
427
Michael Wangc011c412012-09-20 08:51:07 +0800428static int show_rcu_pending(struct seq_file *m, void *v)
Michael Wang51d0f162012-09-20 08:51:06 +0800429{
430 print_one_rcu_pending(m, (struct rcu_data *)v);
431 return 0;
432}
433
Michael Wangc011c412012-09-20 08:51:07 +0800434static const struct seq_operations rcu_pending_op = {
Michael Wang51d0f162012-09-20 08:51:06 +0800435 .start = r_start,
436 .next = r_next,
437 .stop = r_stop,
Michael Wangc011c412012-09-20 08:51:07 +0800438 .show = show_rcu_pending,
Michael Wang51d0f162012-09-20 08:51:06 +0800439};
440
Michael Wangc011c412012-09-20 08:51:07 +0800441static int rcu_pending_open(struct inode *inode, struct file *file)
Michael Wang51d0f162012-09-20 08:51:06 +0800442{
Michael Wangc011c412012-09-20 08:51:07 +0800443 return r_open(inode, file, &rcu_pending_op);
Michael Wang51d0f162012-09-20 08:51:06 +0800444}
445
Michael Wangc011c412012-09-20 08:51:07 +0800446static const struct file_operations rcu_pending_fops = {
Michael Wang51d0f162012-09-20 08:51:06 +0800447 .owner = THIS_MODULE,
Michael Wangc011c412012-09-20 08:51:07 +0800448 .open = rcu_pending_open,
Michael Wang51d0f162012-09-20 08:51:06 +0800449 .read = seq_read,
450 .llseek = no_llseek,
451 .release = seq_release,
452};
453
Paul E. McKenney4a298652011-04-03 21:33:51 -0700454static int show_rcutorture(struct seq_file *m, void *unused)
455{
456 seq_printf(m, "rcutorture test sequence: %lu %s\n",
457 rcutorture_testseq >> 1,
458 (rcutorture_testseq & 0x1) ? "(test in progress)" : "");
459 seq_printf(m, "rcutorture update version number: %lu\n",
460 rcutorture_vernum);
461 return 0;
462}
463
464static int rcutorture_open(struct inode *inode, struct file *file)
465{
466 return single_open(file, show_rcutorture, NULL);
467}
468
469static const struct file_operations rcutorture_fops = {
470 .owner = THIS_MODULE,
471 .open = rcutorture_open,
472 .read = seq_read,
473 .llseek = seq_lseek,
474 .release = single_release,
475};
476
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700477static struct dentry *rcudir;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700478
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700479static int __init rcutree_trace_init(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100480{
Michael Wang573bcd402012-09-20 08:51:02 +0800481 struct rcu_state *rsp;
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700482 struct dentry *retval;
Michael Wang573bcd402012-09-20 08:51:02 +0800483 struct dentry *rspdir;
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700484
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100485 rcudir = debugfs_create_dir("rcu", NULL);
486 if (!rcudir)
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700487 goto free_out;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100488
Michael Wang573bcd402012-09-20 08:51:02 +0800489 for_each_rcu_flavor(rsp) {
490 rspdir = debugfs_create_dir(rsp->name, rcudir);
491 if (!rspdir)
492 goto free_out;
Michael Wang878eda72012-09-20 08:51:04 +0800493
494 retval = debugfs_create_file("rcudata", 0444,
Michael Wangc011c412012-09-20 08:51:07 +0800495 rspdir, rsp, &rcudata_fops);
Michael Wang878eda72012-09-20 08:51:04 +0800496 if (!retval)
497 goto free_out;
Michael Wangd29200e2012-09-20 08:51:05 +0800498
499 retval = debugfs_create_file("rcudata.csv", 0444,
Michael Wangc011c412012-09-20 08:51:07 +0800500 rspdir, rsp, &rcudata_csv_fops);
Michael Wangd29200e2012-09-20 08:51:05 +0800501 if (!retval)
502 goto free_out;
Michael Wang51d0f162012-09-20 08:51:06 +0800503
504 retval = debugfs_create_file("rcu_pending", 0444,
Michael Wangc011c412012-09-20 08:51:07 +0800505 rspdir, rsp, &rcu_pending_fops);
Michael Wang51d0f162012-09-20 08:51:06 +0800506 if (!retval)
507 goto free_out;
Michael Wang573bcd402012-09-20 08:51:02 +0800508 }
509
Paul E. McKenneyd7e187c2012-05-25 11:49:15 -0700510 retval = debugfs_create_file("rcubarrier", 0444, rcudir,
511 NULL, &rcubarrier_fops);
512 if (!retval)
513 goto free_out;
514
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800515 if (rcu_boost_trace_create_file(rcudir))
516 goto free_out;
517
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700518 retval = debugfs_create_file("rcugp", 0444, rcudir, NULL, &rcugp_fops);
519 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100520 goto free_out;
521
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700522 retval = debugfs_create_file("rcuhier", 0444, rcudir,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100523 NULL, &rcuhier_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700524 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100525 goto free_out;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700526
Paul E. McKenney4a298652011-04-03 21:33:51 -0700527 retval = debugfs_create_file("rcutorture", 0444, rcudir,
528 NULL, &rcutorture_fops);
529 if (!retval)
530 goto free_out;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100531 return 0;
532free_out:
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700533 debugfs_remove_recursive(rcudir);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100534 return 1;
535}
536
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700537static void __exit rcutree_trace_cleanup(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100538{
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700539 debugfs_remove_recursive(rcudir);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100540}
541
542
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700543module_init(rcutree_trace_init);
544module_exit(rcutree_trace_cleanup);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100545
546MODULE_AUTHOR("Paul E. McKenney");
547MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation");
548MODULE_LICENSE("GPL");