blob: ead5736f99b5d0f9faace6d9a4fb8b994fb4e736 [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>
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>
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. McKenney64db4cf2008-12-18 21:55:32 +010049static void print_one_rcu_data(struct seq_file *m, struct rcu_data *rdp)
50{
51 if (!rdp->beenonline)
52 return;
Paul E. McKenney20133cf2010-02-22 17:05:01 -080053 seq_printf(m, "%3d%cc=%lu g=%lu pq=%d pqc=%lu qp=%d",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010054 rdp->cpu,
55 cpu_is_offline(rdp->cpu) ? '!' : ' ',
56 rdp->completed, rdp->gpnum,
57 rdp->passed_quiesc, rdp->passed_quiesc_completed,
Paul E. McKenneyef631b02009-04-13 21:31:16 -070058 rdp->qs_pending);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010059#ifdef CONFIG_NO_HZ
Paul E. McKenneye59fb312010-09-07 10:38:22 -070060 seq_printf(m, " dt=%d/%d/%d df=%lu",
61 atomic_read(&rdp->dynticks->dynticks),
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010062 rdp->dynticks->dynticks_nesting,
Paul E. McKenneye59fb312010-09-07 10:38:22 -070063 rdp->dynticks->dynticks_nmi_nesting,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010064 rdp->dynticks_fqs);
65#endif /* #ifdef CONFIG_NO_HZ */
66 seq_printf(m, " of=%lu ri=%lu", rdp->offline_fqs, rdp->resched_ipi);
Paul E. McKenney269dcc12010-09-07 14:23:09 -070067 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);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010070}
71
72#define PRINT_RCU_DATA(name, func, m) \
73 do { \
74 int _p_r_d_i; \
75 \
76 for_each_possible_cpu(_p_r_d_i) \
77 func(m, &per_cpu(name, _p_r_d_i)); \
78 } while (0)
79
80static int show_rcudata(struct seq_file *m, void *unused)
81{
Paul E. McKenneyf41d9112009-08-22 13:56:52 -070082#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 */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -070086 seq_puts(m, "rcu_sched:\n");
87 PRINT_RCU_DATA(rcu_sched_data, print_one_rcu_data, m);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010088 seq_puts(m, "rcu_bh:\n");
89 PRINT_RCU_DATA(rcu_bh_data, print_one_rcu_data, m);
90 return 0;
91}
92
93static int rcudata_open(struct inode *inode, struct file *file)
94{
95 return single_open(file, show_rcudata, NULL);
96}
97
Paul E. McKenney9b2619a2009-09-23 09:50:43 -070098static const struct file_operations rcudata_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +010099 .owner = THIS_MODULE,
100 .open = rcudata_open,
101 .read = seq_read,
102 .llseek = seq_lseek,
103 .release = single_release,
104};
105
106static void print_one_rcu_data_csv(struct seq_file *m, struct rcu_data *rdp)
107{
108 if (!rdp->beenonline)
109 return;
Paul E. McKenney20133cf2010-02-22 17:05:01 -0800110 seq_printf(m, "%d,%s,%lu,%lu,%d,%lu,%d",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100111 rdp->cpu,
Paul E. McKenney5699ed82009-08-22 13:56:48 -0700112 cpu_is_offline(rdp->cpu) ? "\"N\"" : "\"Y\"",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100113 rdp->completed, rdp->gpnum,
114 rdp->passed_quiesc, rdp->passed_quiesc_completed,
Paul E. McKenneyef631b02009-04-13 21:31:16 -0700115 rdp->qs_pending);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100116#ifdef CONFIG_NO_HZ
117 seq_printf(m, ",%d,%d,%d,%lu",
Paul E. McKenneye59fb312010-09-07 10:38:22 -0700118 atomic_read(&rdp->dynticks->dynticks),
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100119 rdp->dynticks->dynticks_nesting,
Paul E. McKenneye59fb312010-09-07 10:38:22 -0700120 rdp->dynticks->dynticks_nmi_nesting,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100121 rdp->dynticks_fqs);
122#endif /* #ifdef CONFIG_NO_HZ */
123 seq_printf(m, ",%lu,%lu", rdp->offline_fqs, rdp->resched_ipi);
Paul E. McKenney269dcc12010-09-07 14:23:09 -0700124 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);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100127}
128
129static int show_rcudata_csv(struct seq_file *m, void *unused)
130{
Paul E. McKenneyef631b02009-04-13 21:31:16 -0700131 seq_puts(m, "\"CPU\",\"Online?\",\"c\",\"g\",\"pq\",\"pqc\",\"pq\",");
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100132#ifdef CONFIG_NO_HZ
Paul E. McKenneye59fb312010-09-07 10:38:22 -0700133 seq_puts(m, "\"dt\",\"dt nesting\",\"dt NMI nesting\",\"df\",");
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100134#endif /* #ifdef CONFIG_NO_HZ */
Paul E. McKenney269dcc12010-09-07 14:23:09 -0700135 seq_puts(m, "\"of\",\"ri\",\"ql\",\"b\",\"ci\",\"co\",\"ca\"\n");
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700136#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 */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700140 seq_puts(m, "\"rcu_sched:\"\n");
141 PRINT_RCU_DATA(rcu_sched_data, print_one_rcu_data_csv, m);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100142 seq_puts(m, "\"rcu_bh:\"\n");
143 PRINT_RCU_DATA(rcu_bh_data, print_one_rcu_data_csv, m);
144 return 0;
145}
146
147static int rcudata_csv_open(struct inode *inode, struct file *file)
148{
149 return single_open(file, show_rcudata_csv, NULL);
150}
151
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700152static const struct file_operations rcudata_csv_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100153 .owner = THIS_MODULE,
154 .open = rcudata_csv_open,
155 .read = seq_read,
156 .llseek = seq_lseek,
157 .release = single_release,
158};
159
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800160#ifdef CONFIG_RCU_BOOST
161
162static void print_one_rcu_node_boost(struct seq_file *m, struct rcu_node *rnp)
163{
164 seq_printf(m, "%d:%d tasks=%c%c%c%c ntb=%lu neb=%lu nnb=%lu "
165 "j=%04x bt=%04x\n",
166 rnp->grplo, rnp->grphi,
167 "T."[list_empty(&rnp->blkd_tasks)],
168 "N."[!rnp->gp_tasks],
169 "E."[!rnp->exp_tasks],
170 "B."[!rnp->boost_tasks],
171 rnp->n_tasks_boosted, rnp->n_exp_boosts,
172 rnp->n_normal_boosts,
173 (int)(jiffies & 0xffff),
174 (int)(rnp->boost_time & 0xffff));
175 seq_printf(m, "%s: nt=%lu egt=%lu bt=%lu nb=%lu ny=%lu nos=%lu\n",
176 " balk",
177 rnp->n_balk_blkd_tasks,
178 rnp->n_balk_exp_gp_tasks,
179 rnp->n_balk_boost_tasks,
180 rnp->n_balk_notblocked,
181 rnp->n_balk_notyet,
182 rnp->n_balk_nos);
183}
184
185static int show_rcu_node_boost(struct seq_file *m, void *unused)
186{
187 struct rcu_node *rnp;
188
189 rcu_for_each_leaf_node(&rcu_preempt_state, rnp)
190 print_one_rcu_node_boost(m, rnp);
191 return 0;
192}
193
194static int rcu_node_boost_open(struct inode *inode, struct file *file)
195{
196 return single_open(file, show_rcu_node_boost, NULL);
197}
198
199static const struct file_operations rcu_node_boost_fops = {
200 .owner = THIS_MODULE,
201 .open = rcu_node_boost_open,
202 .read = seq_read,
203 .llseek = seq_lseek,
204 .release = single_release,
205};
206
207/*
208 * Create the rcuboost debugfs entry. Standard error return.
209 */
210static int rcu_boost_trace_create_file(struct dentry *rcudir)
211{
212 return !debugfs_create_file("rcuboost", 0444, rcudir, NULL,
213 &rcu_node_boost_fops);
214}
215
216#else /* #ifdef CONFIG_RCU_BOOST */
217
218static int rcu_boost_trace_create_file(struct dentry *rcudir)
219{
220 return 0; /* There cannot be an error if we didn't create it! */
221}
222
223#endif /* #else #ifdef CONFIG_RCU_BOOST */
224
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100225static void print_one_rcu_state(struct seq_file *m, struct rcu_state *rsp)
226{
Paul E. McKenney20133cf2010-02-22 17:05:01 -0800227 unsigned long gpnum;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100228 int level = 0;
229 struct rcu_node *rnp;
230
Paul E. McKenney3397e042009-10-14 16:36:38 -0700231 gpnum = rsp->gpnum;
Paul E. McKenney20133cf2010-02-22 17:05:01 -0800232 seq_printf(m, "c=%lu g=%lu s=%d jfq=%ld j=%x "
Lai Jiangshan29494be2010-10-20 14:13:06 +0800233 "nfqs=%lu/nfqsng=%lu(%lu) fqlh=%lu\n",
Paul E. McKenney3397e042009-10-14 16:36:38 -0700234 rsp->completed, gpnum, rsp->signaled,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100235 (long)(rsp->jiffies_force_qs - jiffies),
236 (int)(jiffies & 0xffff),
237 rsp->n_force_qs, rsp->n_force_qs_ngp,
238 rsp->n_force_qs - rsp->n_force_qs_ngp,
Lai Jiangshan29494be2010-10-20 14:13:06 +0800239 rsp->n_force_qs_lh);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100240 for (rnp = &rsp->node[0]; rnp - &rsp->node[0] < NUM_RCU_NODES; rnp++) {
241 if (rnp->level != level) {
242 seq_puts(m, "\n");
243 level = rnp->level;
244 }
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800245 seq_printf(m, "%lx/%lx %c%c>%c %d:%d ^%d ",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100246 rnp->qsmask, rnp->qsmaskinit,
Paul E. McKenney12f5f522010-11-29 21:56:39 -0800247 ".G"[rnp->gp_tasks != NULL],
248 ".E"[rnp->exp_tasks != NULL],
249 ".T"[!list_empty(&rnp->blkd_tasks)],
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100250 rnp->grplo, rnp->grphi, rnp->grpnum);
251 }
252 seq_puts(m, "\n");
253}
254
255static int show_rcuhier(struct seq_file *m, void *unused)
256{
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700257#ifdef CONFIG_TREE_PREEMPT_RCU
258 seq_puts(m, "rcu_preempt:\n");
259 print_one_rcu_state(m, &rcu_preempt_state);
260#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700261 seq_puts(m, "rcu_sched:\n");
262 print_one_rcu_state(m, &rcu_sched_state);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100263 seq_puts(m, "rcu_bh:\n");
264 print_one_rcu_state(m, &rcu_bh_state);
265 return 0;
266}
267
268static int rcuhier_open(struct inode *inode, struct file *file)
269{
270 return single_open(file, show_rcuhier, NULL);
271}
272
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700273static const struct file_operations rcuhier_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100274 .owner = THIS_MODULE,
275 .open = rcuhier_open,
276 .read = seq_read,
277 .llseek = seq_lseek,
278 .release = single_release,
279};
280
281static int show_rcugp(struct seq_file *m, void *unused)
282{
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700283#ifdef CONFIG_TREE_PREEMPT_RCU
Paul E. McKenney20133cf2010-02-22 17:05:01 -0800284 seq_printf(m, "rcu_preempt: completed=%ld gpnum=%lu\n",
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700285 rcu_preempt_state.completed, rcu_preempt_state.gpnum);
286#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenney20133cf2010-02-22 17:05:01 -0800287 seq_printf(m, "rcu_sched: completed=%ld gpnum=%lu\n",
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700288 rcu_sched_state.completed, rcu_sched_state.gpnum);
Paul E. McKenney20133cf2010-02-22 17:05:01 -0800289 seq_printf(m, "rcu_bh: completed=%ld gpnum=%lu\n",
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100290 rcu_bh_state.completed, rcu_bh_state.gpnum);
291 return 0;
292}
293
294static int rcugp_open(struct inode *inode, struct file *file)
295{
296 return single_open(file, show_rcugp, NULL);
297}
298
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700299static const struct file_operations rcugp_fops = {
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100300 .owner = THIS_MODULE,
301 .open = rcugp_open,
302 .read = seq_read,
303 .llseek = seq_lseek,
304 .release = single_release,
305};
306
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700307static void print_one_rcu_pending(struct seq_file *m, struct rcu_data *rdp)
308{
309 seq_printf(m, "%3d%cnp=%ld "
Paul E. McKenneyd21670a2010-04-14 17:39:26 -0700310 "qsp=%ld rpq=%ld cbr=%ld cng=%ld "
311 "gpc=%ld gps=%ld nf=%ld nn=%ld\n",
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700312 rdp->cpu,
313 cpu_is_offline(rdp->cpu) ? '!' : ' ',
314 rdp->n_rcu_pending,
315 rdp->n_rp_qs_pending,
Paul E. McKenneyd21670a2010-04-14 17:39:26 -0700316 rdp->n_rp_report_qs,
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700317 rdp->n_rp_cb_ready,
318 rdp->n_rp_cpu_needs_gp,
319 rdp->n_rp_gp_completed,
320 rdp->n_rp_gp_started,
321 rdp->n_rp_need_fqs,
322 rdp->n_rp_need_nothing);
323}
324
325static void print_rcu_pendings(struct seq_file *m, struct rcu_state *rsp)
326{
327 int cpu;
328 struct rcu_data *rdp;
329
330 for_each_possible_cpu(cpu) {
Lai Jiangshan394f99a2010-06-28 16:25:04 +0800331 rdp = per_cpu_ptr(rsp->rda, cpu);
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700332 if (rdp->beenonline)
333 print_one_rcu_pending(m, rdp);
334 }
335}
336
337static int show_rcu_pending(struct seq_file *m, void *unused)
338{
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700339#ifdef CONFIG_TREE_PREEMPT_RCU
340 seq_puts(m, "rcu_preempt:\n");
341 print_rcu_pendings(m, &rcu_preempt_state);
342#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
Paul E. McKenneyd6714c22009-08-22 13:56:46 -0700343 seq_puts(m, "rcu_sched:\n");
344 print_rcu_pendings(m, &rcu_sched_state);
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700345 seq_puts(m, "rcu_bh:\n");
346 print_rcu_pendings(m, &rcu_bh_state);
347 return 0;
348}
349
350static int rcu_pending_open(struct inode *inode, struct file *file)
351{
352 return single_open(file, show_rcu_pending, NULL);
353}
354
Paul E. McKenney9b2619a2009-09-23 09:50:43 -0700355static const struct file_operations rcu_pending_fops = {
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700356 .owner = THIS_MODULE,
357 .open = rcu_pending_open,
358 .read = seq_read,
359 .llseek = seq_lseek,
360 .release = single_release,
361};
362
363static struct dentry *rcudir;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700364
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700365static int __init rcutree_trace_init(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100366{
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700367 struct dentry *retval;
368
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100369 rcudir = debugfs_create_dir("rcu", NULL);
370 if (!rcudir)
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700371 goto free_out;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100372
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700373 retval = debugfs_create_file("rcudata", 0444, rcudir,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100374 NULL, &rcudata_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700375 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100376 goto free_out;
377
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700378 retval = debugfs_create_file("rcudata.csv", 0444, rcudir,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100379 NULL, &rcudata_csv_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700380 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100381 goto free_out;
382
Paul E. McKenney0ea1f2e2011-02-22 13:42:43 -0800383 if (rcu_boost_trace_create_file(rcudir))
384 goto free_out;
385
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700386 retval = debugfs_create_file("rcugp", 0444, rcudir, NULL, &rcugp_fops);
387 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100388 goto free_out;
389
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700390 retval = debugfs_create_file("rcuhier", 0444, rcudir,
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100391 NULL, &rcuhier_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700392 if (!retval)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100393 goto free_out;
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700394
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700395 retval = debugfs_create_file("rcu_pending", 0444, rcudir,
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700396 NULL, &rcu_pending_fops);
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700397 if (!retval)
Paul E. McKenney7ba5c842009-04-13 21:31:17 -0700398 goto free_out;
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100399 return 0;
400free_out:
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700401 debugfs_remove_recursive(rcudir);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100402 return 1;
403}
404
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700405static void __exit rcutree_trace_cleanup(void)
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100406{
Paul E. McKenney22f00b62009-08-22 13:56:50 -0700407 debugfs_remove_recursive(rcudir);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100408}
409
410
Paul E. McKenneydeb7a412010-09-30 21:33:32 -0700411module_init(rcutree_trace_init);
412module_exit(rcutree_trace_cleanup);
Paul E. McKenney64db4cf2008-12-18 21:55:32 +0100413
414MODULE_AUTHOR("Paul E. McKenney");
415MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation");
416MODULE_LICENSE("GPL");