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 -
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/module.h>
34 #include <linux/sched.h>
35 #include <linux/atomic.h>
36 #include <linux/bitops.h>
37 #include <linux/export.h>
38 #include <linux/completion.h>
39 #include <linux/moduleparam.h>
40 #include <linux/percpu.h>
41 #include <linux/notifier.h>
42 #include <linux/cpu.h>
43 #include <linux/mutex.h>
44 #include <linux/debugfs.h>
45 #include <linux/seq_file.h>
47 #define RCU_TREE_NONCORE
50 #ifdef CONFIG_RCU_BOOST
52 DECLARE_PER_CPU(unsigned int, rcu_cpu_kthread_status
);
53 DECLARE_PER_CPU(unsigned int, rcu_cpu_kthread_cpu
);
54 DECLARE_PER_CPU(unsigned int, rcu_cpu_kthread_loops
);
55 DECLARE_PER_CPU(char, rcu_cpu_has_work
);
57 static char convert_kthread_status(unsigned int kthread_status
)
59 if (kthread_status
> RCU_KTHREAD_MAX
)
61 return "SRWOY"[kthread_status
];
64 #endif /* #ifdef CONFIG_RCU_BOOST */
66 static void print_one_rcu_data(struct seq_file
*m
, struct rcu_data
*rdp
)
70 seq_printf(m
, "%3d%cc=%lu g=%lu pq=%d pqc=%lu qp=%d",
72 cpu_is_offline(rdp
->cpu
) ? '!' : ' ',
73 rdp
->completed
, rdp
->gpnum
,
74 rdp
->passed_quiesc
, rdp
->passed_quiesc_completed
,
77 seq_printf(m
, " dt=%d/%d/%d df=%lu",
78 atomic_read(&rdp
->dynticks
->dynticks
),
79 rdp
->dynticks
->dynticks_nesting
,
80 rdp
->dynticks
->dynticks_nmi_nesting
,
82 #endif /* #ifdef CONFIG_NO_HZ */
83 seq_printf(m
, " of=%lu ri=%lu", rdp
->offline_fqs
, rdp
->resched_ipi
);
84 seq_printf(m
, " ql=%ld qs=%c%c%c%c",
86 ".N"[rdp
->nxttail
[RCU_NEXT_READY_TAIL
] !=
87 rdp
->nxttail
[RCU_NEXT_TAIL
]],
88 ".R"[rdp
->nxttail
[RCU_WAIT_TAIL
] !=
89 rdp
->nxttail
[RCU_NEXT_READY_TAIL
]],
90 ".W"[rdp
->nxttail
[RCU_DONE_TAIL
] !=
91 rdp
->nxttail
[RCU_WAIT_TAIL
]],
92 ".D"[&rdp
->nxtlist
!= rdp
->nxttail
[RCU_DONE_TAIL
]]);
93 #ifdef CONFIG_RCU_BOOST
94 seq_printf(m
, " kt=%d/%c/%d ktl=%x",
95 per_cpu(rcu_cpu_has_work
, rdp
->cpu
),
96 convert_kthread_status(per_cpu(rcu_cpu_kthread_status
,
98 per_cpu(rcu_cpu_kthread_cpu
, rdp
->cpu
),
99 per_cpu(rcu_cpu_kthread_loops
, rdp
->cpu
) & 0xffff);
100 #endif /* #ifdef CONFIG_RCU_BOOST */
101 seq_printf(m
, " b=%ld", rdp
->blimit
);
102 seq_printf(m
, " ci=%lu co=%lu ca=%lu\n",
103 rdp
->n_cbs_invoked
, rdp
->n_cbs_orphaned
, rdp
->n_cbs_adopted
);
106 #define PRINT_RCU_DATA(name, func, m) \
110 for_each_possible_cpu(_p_r_d_i) \
111 func(m, &per_cpu(name, _p_r_d_i)); \
114 static int show_rcudata(struct seq_file
*m
, void *unused
)
116 #ifdef CONFIG_TREE_PREEMPT_RCU
117 seq_puts(m
, "rcu_preempt:\n");
118 PRINT_RCU_DATA(rcu_preempt_data
, print_one_rcu_data
, m
);
119 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
120 seq_puts(m
, "rcu_sched:\n");
121 PRINT_RCU_DATA(rcu_sched_data
, print_one_rcu_data
, m
);
122 seq_puts(m
, "rcu_bh:\n");
123 PRINT_RCU_DATA(rcu_bh_data
, print_one_rcu_data
, m
);
127 static int rcudata_open(struct inode
*inode
, struct file
*file
)
129 return single_open(file
, show_rcudata
, NULL
);
132 static const struct file_operations rcudata_fops
= {
133 .owner
= THIS_MODULE
,
134 .open
= rcudata_open
,
137 .release
= single_release
,
140 static void print_one_rcu_data_csv(struct seq_file
*m
, struct rcu_data
*rdp
)
142 if (!rdp
->beenonline
)
144 seq_printf(m
, "%d,%s,%lu,%lu,%d,%lu,%d",
146 cpu_is_offline(rdp
->cpu
) ? "\"N\"" : "\"Y\"",
147 rdp
->completed
, rdp
->gpnum
,
148 rdp
->passed_quiesc
, rdp
->passed_quiesc_completed
,
151 seq_printf(m
, ",%d,%d,%d,%lu",
152 atomic_read(&rdp
->dynticks
->dynticks
),
153 rdp
->dynticks
->dynticks_nesting
,
154 rdp
->dynticks
->dynticks_nmi_nesting
,
156 #endif /* #ifdef CONFIG_NO_HZ */
157 seq_printf(m
, ",%lu,%lu", rdp
->offline_fqs
, rdp
->resched_ipi
);
158 seq_printf(m
, ",%ld,\"%c%c%c%c\"", rdp
->qlen
,
159 ".N"[rdp
->nxttail
[RCU_NEXT_READY_TAIL
] !=
160 rdp
->nxttail
[RCU_NEXT_TAIL
]],
161 ".R"[rdp
->nxttail
[RCU_WAIT_TAIL
] !=
162 rdp
->nxttail
[RCU_NEXT_READY_TAIL
]],
163 ".W"[rdp
->nxttail
[RCU_DONE_TAIL
] !=
164 rdp
->nxttail
[RCU_WAIT_TAIL
]],
165 ".D"[&rdp
->nxtlist
!= rdp
->nxttail
[RCU_DONE_TAIL
]]);
166 #ifdef CONFIG_RCU_BOOST
167 seq_printf(m
, ",%d,\"%c\"",
168 per_cpu(rcu_cpu_has_work
, rdp
->cpu
),
169 convert_kthread_status(per_cpu(rcu_cpu_kthread_status
,
171 #endif /* #ifdef CONFIG_RCU_BOOST */
172 seq_printf(m
, ",%ld", rdp
->blimit
);
173 seq_printf(m
, ",%lu,%lu,%lu\n",
174 rdp
->n_cbs_invoked
, rdp
->n_cbs_orphaned
, rdp
->n_cbs_adopted
);
177 static int show_rcudata_csv(struct seq_file
*m
, void *unused
)
179 seq_puts(m
, "\"CPU\",\"Online?\",\"c\",\"g\",\"pq\",\"pqc\",\"pq\",");
181 seq_puts(m
, "\"dt\",\"dt nesting\",\"dt NMI nesting\",\"df\",");
182 #endif /* #ifdef CONFIG_NO_HZ */
183 seq_puts(m
, "\"of\",\"ri\",\"ql\",\"qs\"");
184 #ifdef CONFIG_RCU_BOOST
185 seq_puts(m
, "\"kt\",\"ktl\"");
186 #endif /* #ifdef CONFIG_RCU_BOOST */
187 seq_puts(m
, ",\"b\",\"ci\",\"co\",\"ca\"\n");
188 #ifdef CONFIG_TREE_PREEMPT_RCU
189 seq_puts(m
, "\"rcu_preempt:\"\n");
190 PRINT_RCU_DATA(rcu_preempt_data
, print_one_rcu_data_csv
, m
);
191 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
192 seq_puts(m
, "\"rcu_sched:\"\n");
193 PRINT_RCU_DATA(rcu_sched_data
, print_one_rcu_data_csv
, m
);
194 seq_puts(m
, "\"rcu_bh:\"\n");
195 PRINT_RCU_DATA(rcu_bh_data
, print_one_rcu_data_csv
, m
);
199 static int rcudata_csv_open(struct inode
*inode
, struct file
*file
)
201 return single_open(file
, show_rcudata_csv
, NULL
);
204 static const struct file_operations rcudata_csv_fops
= {
205 .owner
= THIS_MODULE
,
206 .open
= rcudata_csv_open
,
209 .release
= single_release
,
212 #ifdef CONFIG_RCU_BOOST
214 static void print_one_rcu_node_boost(struct seq_file
*m
, struct rcu_node
*rnp
)
216 seq_printf(m
, "%d:%d tasks=%c%c%c%c kt=%c ntb=%lu neb=%lu nnb=%lu "
218 rnp
->grplo
, rnp
->grphi
,
219 "T."[list_empty(&rnp
->blkd_tasks
)],
220 "N."[!rnp
->gp_tasks
],
221 "E."[!rnp
->exp_tasks
],
222 "B."[!rnp
->boost_tasks
],
223 convert_kthread_status(rnp
->boost_kthread_status
),
224 rnp
->n_tasks_boosted
, rnp
->n_exp_boosts
,
225 rnp
->n_normal_boosts
,
226 (int)(jiffies
& 0xffff),
227 (int)(rnp
->boost_time
& 0xffff));
228 seq_printf(m
, "%s: nt=%lu egt=%lu bt=%lu nb=%lu ny=%lu nos=%lu\n",
230 rnp
->n_balk_blkd_tasks
,
231 rnp
->n_balk_exp_gp_tasks
,
232 rnp
->n_balk_boost_tasks
,
233 rnp
->n_balk_notblocked
,
238 static int show_rcu_node_boost(struct seq_file
*m
, void *unused
)
240 struct rcu_node
*rnp
;
242 rcu_for_each_leaf_node(&rcu_preempt_state
, rnp
)
243 print_one_rcu_node_boost(m
, rnp
);
247 static int rcu_node_boost_open(struct inode
*inode
, struct file
*file
)
249 return single_open(file
, show_rcu_node_boost
, NULL
);
252 static const struct file_operations rcu_node_boost_fops
= {
253 .owner
= THIS_MODULE
,
254 .open
= rcu_node_boost_open
,
257 .release
= single_release
,
261 * Create the rcuboost debugfs entry. Standard error return.
263 static int rcu_boost_trace_create_file(struct dentry
*rcudir
)
265 return !debugfs_create_file("rcuboost", 0444, rcudir
, NULL
,
266 &rcu_node_boost_fops
);
269 #else /* #ifdef CONFIG_RCU_BOOST */
271 static int rcu_boost_trace_create_file(struct dentry
*rcudir
)
273 return 0; /* There cannot be an error if we didn't create it! */
276 #endif /* #else #ifdef CONFIG_RCU_BOOST */
278 static void print_one_rcu_state(struct seq_file
*m
, struct rcu_state
*rsp
)
282 struct rcu_node
*rnp
;
285 seq_printf(m
, "c=%lu g=%lu s=%d jfq=%ld j=%x "
286 "nfqs=%lu/nfqsng=%lu(%lu) fqlh=%lu\n",
287 rsp
->completed
, gpnum
, rsp
->signaled
,
288 (long)(rsp
->jiffies_force_qs
- jiffies
),
289 (int)(jiffies
& 0xffff),
290 rsp
->n_force_qs
, rsp
->n_force_qs_ngp
,
291 rsp
->n_force_qs
- rsp
->n_force_qs_ngp
,
293 for (rnp
= &rsp
->node
[0]; rnp
- &rsp
->node
[0] < NUM_RCU_NODES
; rnp
++) {
294 if (rnp
->level
!= level
) {
298 seq_printf(m
, "%lx/%lx %c%c>%c %d:%d ^%d ",
299 rnp
->qsmask
, rnp
->qsmaskinit
,
300 ".G"[rnp
->gp_tasks
!= NULL
],
301 ".E"[rnp
->exp_tasks
!= NULL
],
302 ".T"[!list_empty(&rnp
->blkd_tasks
)],
303 rnp
->grplo
, rnp
->grphi
, rnp
->grpnum
);
308 static int show_rcuhier(struct seq_file
*m
, void *unused
)
310 #ifdef CONFIG_TREE_PREEMPT_RCU
311 seq_puts(m
, "rcu_preempt:\n");
312 print_one_rcu_state(m
, &rcu_preempt_state
);
313 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
314 seq_puts(m
, "rcu_sched:\n");
315 print_one_rcu_state(m
, &rcu_sched_state
);
316 seq_puts(m
, "rcu_bh:\n");
317 print_one_rcu_state(m
, &rcu_bh_state
);
321 static int rcuhier_open(struct inode
*inode
, struct file
*file
)
323 return single_open(file
, show_rcuhier
, NULL
);
326 static const struct file_operations rcuhier_fops
= {
327 .owner
= THIS_MODULE
,
328 .open
= rcuhier_open
,
331 .release
= single_release
,
334 static void show_one_rcugp(struct seq_file
*m
, struct rcu_state
*rsp
)
337 unsigned long completed
;
341 struct rcu_node
*rnp
= &rsp
->node
[0];
343 raw_spin_lock_irqsave(&rnp
->lock
, flags
);
344 completed
= rsp
->completed
;
346 if (rsp
->completed
== rsp
->gpnum
)
349 gpage
= jiffies
- rsp
->gp_start
;
351 raw_spin_unlock_irqrestore(&rnp
->lock
, flags
);
352 seq_printf(m
, "%s: completed=%ld gpnum=%lu age=%ld max=%ld\n",
353 rsp
->name
, completed
, gpnum
, gpage
, gpmax
);
356 static int show_rcugp(struct seq_file
*m
, void *unused
)
358 #ifdef CONFIG_TREE_PREEMPT_RCU
359 show_one_rcugp(m
, &rcu_preempt_state
);
360 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
361 show_one_rcugp(m
, &rcu_sched_state
);
362 show_one_rcugp(m
, &rcu_bh_state
);
366 static int rcugp_open(struct inode
*inode
, struct file
*file
)
368 return single_open(file
, show_rcugp
, NULL
);
371 static const struct file_operations rcugp_fops
= {
372 .owner
= THIS_MODULE
,
376 .release
= single_release
,
379 static void print_one_rcu_pending(struct seq_file
*m
, struct rcu_data
*rdp
)
381 seq_printf(m
, "%3d%cnp=%ld "
382 "qsp=%ld rpq=%ld cbr=%ld cng=%ld "
383 "gpc=%ld gps=%ld nf=%ld nn=%ld\n",
385 cpu_is_offline(rdp
->cpu
) ? '!' : ' ',
387 rdp
->n_rp_qs_pending
,
390 rdp
->n_rp_cpu_needs_gp
,
391 rdp
->n_rp_gp_completed
,
392 rdp
->n_rp_gp_started
,
394 rdp
->n_rp_need_nothing
);
397 static void print_rcu_pendings(struct seq_file
*m
, struct rcu_state
*rsp
)
400 struct rcu_data
*rdp
;
402 for_each_possible_cpu(cpu
) {
403 rdp
= per_cpu_ptr(rsp
->rda
, cpu
);
405 print_one_rcu_pending(m
, rdp
);
409 static int show_rcu_pending(struct seq_file
*m
, void *unused
)
411 #ifdef CONFIG_TREE_PREEMPT_RCU
412 seq_puts(m
, "rcu_preempt:\n");
413 print_rcu_pendings(m
, &rcu_preempt_state
);
414 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
415 seq_puts(m
, "rcu_sched:\n");
416 print_rcu_pendings(m
, &rcu_sched_state
);
417 seq_puts(m
, "rcu_bh:\n");
418 print_rcu_pendings(m
, &rcu_bh_state
);
422 static int rcu_pending_open(struct inode
*inode
, struct file
*file
)
424 return single_open(file
, show_rcu_pending
, NULL
);
427 static const struct file_operations rcu_pending_fops
= {
428 .owner
= THIS_MODULE
,
429 .open
= rcu_pending_open
,
432 .release
= single_release
,
435 static int show_rcutorture(struct seq_file
*m
, void *unused
)
437 seq_printf(m
, "rcutorture test sequence: %lu %s\n",
438 rcutorture_testseq
>> 1,
439 (rcutorture_testseq
& 0x1) ? "(test in progress)" : "");
440 seq_printf(m
, "rcutorture update version number: %lu\n",
445 static int rcutorture_open(struct inode
*inode
, struct file
*file
)
447 return single_open(file
, show_rcutorture
, NULL
);
450 static const struct file_operations rcutorture_fops
= {
451 .owner
= THIS_MODULE
,
452 .open
= rcutorture_open
,
455 .release
= single_release
,
458 static struct dentry
*rcudir
;
460 static int __init
rcutree_trace_init(void)
462 struct dentry
*retval
;
464 rcudir
= debugfs_create_dir("rcu", NULL
);
468 retval
= debugfs_create_file("rcudata", 0444, rcudir
,
469 NULL
, &rcudata_fops
);
473 retval
= debugfs_create_file("rcudata.csv", 0444, rcudir
,
474 NULL
, &rcudata_csv_fops
);
478 if (rcu_boost_trace_create_file(rcudir
))
481 retval
= debugfs_create_file("rcugp", 0444, rcudir
, NULL
, &rcugp_fops
);
485 retval
= debugfs_create_file("rcuhier", 0444, rcudir
,
486 NULL
, &rcuhier_fops
);
490 retval
= debugfs_create_file("rcu_pending", 0444, rcudir
,
491 NULL
, &rcu_pending_fops
);
495 retval
= debugfs_create_file("rcutorture", 0444, rcudir
,
496 NULL
, &rcutorture_fops
);
501 debugfs_remove_recursive(rcudir
);
505 static void __exit
rcutree_trace_cleanup(void)
507 debugfs_remove_recursive(rcudir
);
511 module_init(rcutree_trace_init
);
512 module_exit(rcutree_trace_cleanup
);
514 MODULE_AUTHOR("Paul E. McKenney");
515 MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation");
516 MODULE_LICENSE("GPL");