blob: c90d2a917def81502aadbdf591050636cf861422 [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
Paul E. McKenney42c35332012-09-28 10:49:58 -070049#define ulong2long(a) (*(long *)(&(a)))
50
Michael Wang374b9282012-09-20 08:51:03 +080051static int r_open(struct inode *inode, struct file *file,
52 const struct seq_operations *op)
53{
54 int ret = seq_open(file, op);
55 if (!ret) {
56 struct seq_file *m = (struct seq_file *)file->private_data;
57 m->private = inode->i_private;
58 }
59 return ret;
60}
61
62static void *r_start(struct seq_file *m, loff_t *pos)
63{
64 struct rcu_state *rsp = (struct rcu_state *)m->private;
65 *pos = cpumask_next(*pos - 1, cpu_possible_mask);
66 if ((*pos) < nr_cpu_ids)
67 return per_cpu_ptr(rsp->rda, *pos);
68 return NULL;
69}
70
71static void *r_next(struct seq_file *m, void *v, loff_t *pos)
72{
73 (*pos)++;
74 return r_start(m, pos);
75}
76
77static void r_stop(struct seq_file *m, void *v)
78{
79}
80
Paul E. McKenneyd7e187c2012-05-25 11:49:15 -070081static int show_rcubarrier(struct seq_file *m, void *unused)
82{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -070083 struct rcu_state *rsp;
84
85 for_each_rcu_flavor(rsp)
Paul E. McKenney1331e7a2012-08-02 17:43:50 -070086 seq_printf(m, "%s: bcc: %d nbd: %lu\n",
87 rsp->name,
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -070088 atomic_read(&rsp->barrier_cpu_count),
89 rsp->n_barrier_done);
Paul E. McKenneyd7e187c2012-05-25 11:49:15 -070090 return 0;
91}
92
93static int rcubarrier_open(struct inode *inode, struct file *file)
94{
95 return single_open(file, show_rcubarrier, NULL);
96}
97
98static const struct file_operations rcubarrier_fops = {
99 .owner = THIS_MODULE,
100 .open = rcubarrier_open,
101 .read = seq_read,
102 .llseek = seq_lseek,
103 .release = single_release,
104};
105
Michael Wangc25e5572012-10-08 16:59:16 +0800106static int new_show_rcubarrier(struct seq_file *m, void *v)
107{
108 struct rcu_state *rsp = (struct rcu_state *)m->private;
109 seq_printf(m, "bcc: %d nbd: %lu\n",
110 atomic_read(&rsp->barrier_cpu_count),
111 rsp->n_barrier_done);
112 return 0;
113}
114
115static int new_rcubarrier_open(struct inode *inode, struct file *file)
116{
117 return single_open(file, new_show_rcubarrier, inode->i_private);
118}
119
120static const struct file_operations new_rcubarrier_fops = {
121 .owner = THIS_MODULE,
122 .open = new_rcubarrier_open,
123 .read = seq_read,
124 .llseek = no_llseek,
125 .release = seq_release,
126};
127
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700128#ifdef CONFIG_RCU_BOOST
129
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700130static char convert_kthread_status(unsigned int kthread_status)
131{
132 if (kthread_status > RCU_KTHREAD_MAX)
133 return '?';
Paul E. McKenney15ba0ba2011-04-06 16:01:16 -0700134 return "SRWOY"[kthread_status];
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700135}
136
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700137#endif /* #ifdef CONFIG_RCU_BOOST */
138
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100139static void print_one_rcu_data(struct seq_file *m, struct rcu_data *rdp)
140{
141 if (!rdp->beenonline)
142 return;
Paul E. McKenney42c35332012-09-28 10:49:58 -0700143 seq_printf(m, "%3d%cc=%ld g=%ld pq=%d qp=%d",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100144 rdp->cpu,
145 cpu_is_offline(rdp->cpu) ? '!' : ' ',
Paul E. McKenney42c35332012-09-28 10:49:58 -0700146 ulong2long(rdp->completed), ulong2long(rdp->gpnum),
Paul E. McKenneyd7d6a112012-08-21 15:00:05 -0700147 rdp->passed_quiesce, rdp->qs_pending);
Paul E. McKenney9b2e4f12011-09-30 12:10:22 -0700148 seq_printf(m, " dt=%d/%llx/%d df=%lu",
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700149 atomic_read(&rdp->dynticks->dynticks),
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100150 rdp->dynticks->dynticks_nesting,
Paul E. McKenney23b5c8f2010-09-07 10:38:22 -0700151 rdp->dynticks->dynticks_nmi_nesting,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100152 rdp->dynticks_fqs);
Paul E. McKenney2036d942012-01-30 17:02:47 -0800153 seq_printf(m, " of=%lu", rdp->offline_fqs);
Paul E. McKenney486e2592012-01-06 14:11:30 -0800154 seq_printf(m, " ql=%ld/%ld qs=%c%c%c%c",
155 rdp->qlen_lazy, rdp->qlen,
Paul E. McKenney0ac3d132011-03-28 15:47:07 -0700156 ".N"[rdp->nxttail[RCU_NEXT_READY_TAIL] !=
157 rdp->nxttail[RCU_NEXT_TAIL]],
158 ".R"[rdp->nxttail[RCU_WAIT_TAIL] !=
159 rdp->nxttail[RCU_NEXT_READY_TAIL]],
160 ".W"[rdp->nxttail[RCU_DONE_TAIL] !=
161 rdp->nxttail[RCU_WAIT_TAIL]],
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700162 ".D"[&rdp->nxtlist != rdp->nxttail[RCU_DONE_TAIL]]);
163#ifdef CONFIG_RCU_BOOST
Paul E. McKenney62ab7072012-07-16 10:42:38 +0000164 seq_printf(m, " kt=%d/%c ktl=%x",
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700165 per_cpu(rcu_cpu_has_work, rdp->cpu),
166 convert_kthread_status(per_cpu(rcu_cpu_kthread_status,
167 rdp->cpu)),
Paul E. McKenneya46e0892011-06-15 15:47:09 -0700168 per_cpu(rcu_cpu_kthread_loops, rdp->cpu) & 0xffff);
169#endif /* #ifdef CONFIG_RCU_BOOST */
170 seq_printf(m, " b=%ld", rdp->blimit);
Paul E. McKenney269dcc12010-09-07 14:23:09 -0700171 seq_printf(m, " ci=%lu co=%lu ca=%lu\n",
172 rdp->n_cbs_invoked, rdp->n_cbs_orphaned, rdp->n_cbs_adopted);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100173}
174
Michael Wangc011c412012-09-20 08:51:07 +0800175static int show_rcudata(struct seq_file *m, void *v)
Michael Wang878eda72012-09-20 08:51:04 +0800176{
177 print_one_rcu_data(m, (struct rcu_data *)v);
178 return 0;
179}
180
Michael Wangc011c412012-09-20 08:51:07 +0800181static const struct seq_operations rcudate_op = {
Michael Wang878eda72012-09-20 08:51:04 +0800182 .start = r_start,
183 .next = r_next,
184 .stop = r_stop,
Michael Wangc011c412012-09-20 08:51:07 +0800185 .show = show_rcudata,
Michael Wang878eda72012-09-20 08:51:04 +0800186};
187
Michael Wangc011c412012-09-20 08:51:07 +0800188static int rcudata_open(struct inode *inode, struct file *file)
Michael Wang878eda72012-09-20 08:51:04 +0800189{
Michael Wangc011c412012-09-20 08:51:07 +0800190 return r_open(inode, file, &rcudate_op);
Michael Wang878eda72012-09-20 08:51:04 +0800191}
192
Michael Wangc011c412012-09-20 08:51:07 +0800193static const struct file_operations rcudata_fops = {
Michael Wang878eda72012-09-20 08:51:04 +0800194 .owner = THIS_MODULE,
Michael Wangc011c412012-09-20 08:51:07 +0800195 .open = rcudata_open,
Michael Wang878eda72012-09-20 08:51:04 +0800196 .read = seq_read,
197 .llseek = no_llseek,
198 .release = seq_release,
199};
200
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800201#ifdef CONFIG_RCU_BOOST
202
203static void print_one_rcu_node_boost(struct seq_file *m, struct rcu_node *rnp)
204{
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700205 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 -0800206 rnp->grplo, rnp->grphi,
207 "T."[list_empty(&rnp->blkd_tasks)],
208 "N."[!rnp->gp_tasks],
209 "E."[!rnp->exp_tasks],
210 "B."[!rnp->boost_tasks],
Paul E. McKenneyd71df902011-03-29 17:48:28 -0700211 convert_kthread_status(rnp->boost_kthread_status),
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800212 rnp->n_tasks_boosted, rnp->n_exp_boosts,
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700213 rnp->n_normal_boosts);
214 seq_printf(m, "j=%04x bt=%04x\n",
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800215 (int)(jiffies & 0xffff),
216 (int)(rnp->boost_time & 0xffff));
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700217 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 -0800218 rnp->n_balk_blkd_tasks,
219 rnp->n_balk_exp_gp_tasks,
220 rnp->n_balk_boost_tasks,
221 rnp->n_balk_notblocked,
222 rnp->n_balk_notyet,
223 rnp->n_balk_nos);
224}
225
226static int show_rcu_node_boost(struct seq_file *m, void *unused)
227{
228 struct rcu_node *rnp;
229
230 rcu_for_each_leaf_node(&rcu_preempt_state, rnp)
231 print_one_rcu_node_boost(m, rnp);
232 return 0;
233}
234
235static int rcu_node_boost_open(struct inode *inode, struct file *file)
236{
237 return single_open(file, show_rcu_node_boost, NULL);
238}
239
240static const struct file_operations rcu_node_boost_fops = {
241 .owner = THIS_MODULE,
242 .open = rcu_node_boost_open,
243 .read = seq_read,
Michael Wang29c67762012-10-08 16:59:17 +0800244 .llseek = no_llseek,
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800245 .release = single_release,
246};
247
248/*
249 * Create the rcuboost debugfs entry. Standard error return.
250 */
251static int rcu_boost_trace_create_file(struct dentry *rcudir)
252{
253 return !debugfs_create_file("rcuboost", 0444, rcudir, NULL,
254 &rcu_node_boost_fops);
255}
256
257#else /* #ifdef CONFIG_RCU_BOOST */
258
259static int rcu_boost_trace_create_file(struct dentry *rcudir)
260{
261 return 0; /* There cannot be an error if we didn't create it! */
262}
263
264#endif /* #else #ifdef CONFIG_RCU_BOOST */
265
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100266static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp)
267{
Paul E. McKenney20133cf2010-02-22 17:05:01 -0800268 unsigned long gpnum;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100269 int level = 0;
270 struct rcu_node *rnp;
271
Paul E. McKenney3397e042009-10-14 16:36:38 -0700272 gpnum = rsp->gpnum;
Paul E. McKenney42c35332012-09-28 10:49:58 -0700273 seq_printf(m, "%s: c=%ld g=%ld s=%d jfq=%ld j=%x ",
274 rsp->name, ulong2long(rsp->completed), ulong2long(gpnum),
275 rsp->fqs_state,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100276 (long)(rsp->jiffies_force_qs - jiffies),
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700277 (int)(jiffies & 0xffff));
278 seq_printf(m, "nfqs=%lu/nfqsng=%lu(%lu) fqlh=%lu oqlen=%ld/%ld\n",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100279 rsp->n_force_qs, rsp->n_force_qs_ngp,
280 rsp->n_force_qs - rsp->n_force_qs_ngp,
Paul E. McKenneyb1420f12012-03-01 13:18:08 -0800281 rsp->n_force_qs_lh, rsp->qlen_lazy, rsp->qlen);
Paul E. McKenneyf885b7f2012-04-23 15:52:53 -0700282 for (rnp = &rsp->node[0]; rnp - &rsp->node[0] < rcu_num_nodes; rnp++) {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100283 if (rnp->level != level) {
284 seq_puts(m, "\n");
285 level = rnp->level;
286 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800287 seq_printf(m, "%lx/%lx %c%c>%c %d:%d ^%d ",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100288 rnp->qsmask, rnp->qsmaskinit,
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800289 ".G"[rnp->gp_tasks != NULL],
290 ".E"[rnp->exp_tasks != NULL],
291 ".T"[!list_empty(&rnp->blkd_tasks)],
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100292 rnp->grplo, rnp->grphi, rnp->grpnum);
293 }
294 seq_puts(m, "\n");
295}
296
297static int show_rcuhier(struct seq_file *m, void *unused)
298{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700299 struct rcu_state *rsp;
300
301 for_each_rcu_flavor(rsp)
302 print_one_rcu_state(m, rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100303 return 0;
304}
305
306static int rcuhier_open(struct inode *inode, struct file *file)
307{
308 return single_open(file, show_rcuhier, NULL);
309}
310
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700311static const struct file_operations rcuhier_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100312 .owner = THIS_MODULE,
313 .open = rcuhier_open,
314 .read = seq_read,
315 .llseek = seq_lseek,
316 .release = single_release,
317};
318
Paul E. McKenney15ba0ba2011-04-06 16:01:16 -0700319static void show_one_rcugp(struct seq_file *m, struct rcu_state *rsp)
320{
321 unsigned long flags;
322 unsigned long completed;
323 unsigned long gpnum;
324 unsigned long gpage;
325 unsigned long gpmax;
326 struct rcu_node *rnp = &rsp->node[0];
327
328 raw_spin_lock_irqsave(&rnp->lock, flags);
Paul E. McKenney42c35332012-09-28 10:49:58 -0700329 completed = ACCESS_ONCE(rsp->completed);
330 gpnum = ACCESS_ONCE(rsp->gpnum);
331 if (completed == gpnum)
Paul E. McKenney15ba0ba2011-04-06 16:01:16 -0700332 gpage = 0;
333 else
334 gpage = jiffies - rsp->gp_start;
335 gpmax = rsp->gp_max;
336 raw_spin_unlock_irqrestore(&rnp->lock, flags);
Paul E. McKenney42c35332012-09-28 10:49:58 -0700337 seq_printf(m, "%s: completed=%ld gpnum=%ld age=%ld max=%ld\n",
338 rsp->name, ulong2long(completed), ulong2long(gpnum), gpage, gpmax);
Paul E. McKenney15ba0ba2011-04-06 16:01:16 -0700339}
340
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100341static int show_rcugp(struct seq_file *m, void *unused)
342{
Paul E. McKenneyc0cc9622012-06-12 12:25:39 -0700343 struct rcu_state *rsp;
344
345 for_each_rcu_flavor(rsp)
346 show_one_rcugp(m, rsp);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100347 return 0;
348}
349
350static int rcugp_open(struct inode *inode, struct file *file)
351{
352 return single_open(file, show_rcugp, NULL);
353}
354
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700355static const struct file_operations rcugp_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100356 .owner = THIS_MODULE,
357 .open = rcugp_open,
358 .read = seq_read,
359 .llseek = seq_lseek,
360 .release = single_release,
361};
362
Michael Wang66b38bc2012-10-08 16:59:18 +0800363static int new_show_rcugp(struct seq_file *m, void *v)
364{
365 struct rcu_state *rsp = (struct rcu_state *)m->private;
366 show_one_rcugp(m, rsp);
367 return 0;
368}
369
370static int new_rcugp_open(struct inode *inode, struct file *file)
371{
372 return single_open(file, new_show_rcugp, inode->i_private);
373}
374
375static const struct file_operations new_rcugp_fops = {
376 .owner = THIS_MODULE,
377 .open = new_rcugp_open,
378 .read = seq_read,
379 .llseek = no_llseek,
380 .release = seq_release,
381};
382
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700383static void print_one_rcu_pending(struct seq_file *m, struct rcu_data *rdp)
384{
Michael Wang51d0f162012-09-20 08:51:06 +0800385 if (!rdp->beenonline)
386 return;
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700387 seq_printf(m, "%3d%cnp=%ld ",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700388 rdp->cpu,
389 cpu_is_offline(rdp->cpu) ? '!' : ' ',
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700390 rdp->n_rcu_pending);
391 seq_printf(m, "qsp=%ld rpq=%ld cbr=%ld cng=%ld ",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700392 rdp->n_rp_qs_pending,
Paul E. McKenneyd21670a2010-04-14 17:39:26 -0700393 rdp->n_rp_report_qs,
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700394 rdp->n_rp_cb_ready,
Paul E. McKenney5cf05ad2012-05-17 15:12:45 -0700395 rdp->n_rp_cpu_needs_gp);
Paul E. McKenney4605c012012-06-26 14:00:48 -0700396 seq_printf(m, "gpc=%ld gps=%ld nn=%ld\n",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700397 rdp->n_rp_gp_completed,
398 rdp->n_rp_gp_started,
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700399 rdp->n_rp_need_nothing);
400}
401
Michael Wangc011c412012-09-20 08:51:07 +0800402static int show_rcu_pending(struct seq_file *m, void *v)
Michael Wang51d0f162012-09-20 08:51:06 +0800403{
404 print_one_rcu_pending(m, (struct rcu_data *)v);
405 return 0;
406}
407
Michael Wangc011c412012-09-20 08:51:07 +0800408static const struct seq_operations rcu_pending_op = {
Michael Wang51d0f162012-09-20 08:51:06 +0800409 .start = r_start,
410 .next = r_next,
411 .stop = r_stop,
Michael Wangc011c412012-09-20 08:51:07 +0800412 .show = show_rcu_pending,
Michael Wang51d0f162012-09-20 08:51:06 +0800413};
414
Michael Wangc011c412012-09-20 08:51:07 +0800415static int rcu_pending_open(struct inode *inode, struct file *file)
Michael Wang51d0f162012-09-20 08:51:06 +0800416{
Michael Wangc011c412012-09-20 08:51:07 +0800417 return r_open(inode, file, &rcu_pending_op);
Michael Wang51d0f162012-09-20 08:51:06 +0800418}
419
Michael Wangc011c412012-09-20 08:51:07 +0800420static const struct file_operations rcu_pending_fops = {
Michael Wang51d0f162012-09-20 08:51:06 +0800421 .owner = THIS_MODULE,
Michael Wangc011c412012-09-20 08:51:07 +0800422 .open = rcu_pending_open,
Michael Wang51d0f162012-09-20 08:51:06 +0800423 .read = seq_read,
424 .llseek = no_llseek,
425 .release = seq_release,
426};
427
Paul E. McKenney4a298652011-04-03 21:33:51 -0700428static int show_rcutorture(struct seq_file *m, void *unused)
429{
430 seq_printf(m, "rcutorture test sequence: %lu %s\n",
431 rcutorture_testseq >> 1,
432 (rcutorture_testseq & 0x1) ? "(test in progress)" : "");
433 seq_printf(m, "rcutorture update version number: %lu\n",
434 rcutorture_vernum);
435 return 0;
436}
437
438static int rcutorture_open(struct inode *inode, struct file *file)
439{
440 return single_open(file, show_rcutorture, NULL);
441}
442
443static const struct file_operations rcutorture_fops = {
444 .owner = THIS_MODULE,
445 .open = rcutorture_open,
446 .read = seq_read,
447 .llseek = seq_lseek,
448 .release = single_release,
449};
450
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700451static struct dentry *rcudir;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700452
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700453static int __init rcutree_trace_init(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100454{
Michael Wang573bcd402012-09-20 08:51:02 +0800455 struct rcu_state *rsp;
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700456 struct dentry *retval;
Michael Wang573bcd402012-09-20 08:51:02 +0800457 struct dentry *rspdir;
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700458
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100459 rcudir = debugfs_create_dir("rcu", NULL);
460 if (!rcudir)
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700461 goto free_out;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100462
Michael Wang573bcd402012-09-20 08:51:02 +0800463 for_each_rcu_flavor(rsp) {
464 rspdir = debugfs_create_dir(rsp->name, rcudir);
465 if (!rspdir)
466 goto free_out;
Michael Wang878eda72012-09-20 08:51:04 +0800467
468 retval = debugfs_create_file("rcudata", 0444,
Michael Wangc011c412012-09-20 08:51:07 +0800469 rspdir, rsp, &rcudata_fops);
Michael Wang878eda72012-09-20 08:51:04 +0800470 if (!retval)
471 goto free_out;
Michael Wangd29200e2012-09-20 08:51:05 +0800472
Michael Wang51d0f162012-09-20 08:51:06 +0800473 retval = debugfs_create_file("rcu_pending", 0444,
Michael Wangc011c412012-09-20 08:51:07 +0800474 rspdir, rsp, &rcu_pending_fops);
Michael Wang51d0f162012-09-20 08:51:06 +0800475 if (!retval)
476 goto free_out;
Michael Wangc25e5572012-10-08 16:59:16 +0800477
478 retval = debugfs_create_file("rcubarrier", 0444,
479 rspdir, rsp, &new_rcubarrier_fops);
480 if (!retval)
481 goto free_out;
Michael Wang29c67762012-10-08 16:59:17 +0800482
483#ifdef CONFIG_RCU_BOOST
484 if (rsp == &rcu_preempt_state) {
485 retval = debugfs_create_file("rcuboost", 0444,
486 rspdir, NULL, &rcu_node_boost_fops);
487 if (!retval)
488 goto free_out;
489 }
490#endif
Michael Wang66b38bc2012-10-08 16:59:18 +0800491
492 retval = debugfs_create_file("rcugp", 0444,
493 rspdir, rsp, &new_rcugp_fops);
494 if (!retval)
495 goto free_out;
496
Michael Wang573bcd402012-09-20 08:51:02 +0800497 }
498
Paul E. McKenneyd7e187c2012-05-25 11:49:15 -0700499 retval = debugfs_create_file("rcubarrier", 0444, rcudir,
500 NULL, &rcubarrier_fops);
501 if (!retval)
502 goto free_out;
503
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800504 if (rcu_boost_trace_create_file(rcudir))
505 goto free_out;
506
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700507 retval = debugfs_create_file("rcugp", 0444, rcudir, NULL, &rcugp_fops);
508 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100509 goto free_out;
510
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700511 retval = debugfs_create_file("rcuhier", 0444, rcudir,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100512 NULL, &rcuhier_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700513 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100514 goto free_out;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700515
Paul E. McKenney4a298652011-04-03 21:33:51 -0700516 retval = debugfs_create_file("rcutorture", 0444, rcudir,
517 NULL, &rcutorture_fops);
518 if (!retval)
519 goto free_out;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100520 return 0;
521free_out:
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700522 debugfs_remove_recursive(rcudir);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100523 return 1;
524}
525
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700526static void __exit rcutree_trace_cleanup(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100527{
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700528 debugfs_remove_recursive(rcudir);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100529}
530
531
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700532module_init(rcutree_trace_init);
533module_exit(rcutree_trace_cleanup);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100534
535MODULE_AUTHOR("Paul E. McKenney");
536MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation");
537MODULE_LICENSE("GPL");