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/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>
46 #define RCU_TREE_NONCORE
49 DECLARE_PER_CPU(unsigned int, rcu_cpu_kthread_status
);
50 DECLARE_PER_CPU(unsigned int, rcu_cpu_kthread_cpu
);
51 DECLARE_PER_CPU(unsigned int, rcu_cpu_kthread_loops
);
52 DECLARE_PER_CPU(char, rcu_cpu_has_work
);
54 static char convert_kthread_status(unsigned int kthread_status
)
56 if (kthread_status
> RCU_KTHREAD_MAX
)
58 return "SRWOY"[kthread_status
];
61 static void print_one_rcu_data(struct seq_file
*m
, struct rcu_data
*rdp
)
65 seq_printf(m
, "%3d%cc=%lu g=%lu pq=%d pqc=%lu qp=%d",
67 cpu_is_offline(rdp
->cpu
) ? '!' : ' ',
68 rdp
->completed
, rdp
->gpnum
,
69 rdp
->passed_quiesc
, rdp
->passed_quiesc_completed
,
72 seq_printf(m
, " dt=%d/%d/%d df=%lu",
73 atomic_read(&rdp
->dynticks
->dynticks
),
74 rdp
->dynticks
->dynticks_nesting
,
75 rdp
->dynticks
->dynticks_nmi_nesting
,
77 #endif /* #ifdef CONFIG_NO_HZ */
78 seq_printf(m
, " of=%lu ri=%lu", rdp
->offline_fqs
, rdp
->resched_ipi
);
79 seq_printf(m
, " ql=%ld qs=%c%c%c%c kt=%d/%c/%d ktl=%x b=%ld",
81 ".N"[rdp
->nxttail
[RCU_NEXT_READY_TAIL
] !=
82 rdp
->nxttail
[RCU_NEXT_TAIL
]],
83 ".R"[rdp
->nxttail
[RCU_WAIT_TAIL
] !=
84 rdp
->nxttail
[RCU_NEXT_READY_TAIL
]],
85 ".W"[rdp
->nxttail
[RCU_DONE_TAIL
] !=
86 rdp
->nxttail
[RCU_WAIT_TAIL
]],
87 ".D"[&rdp
->nxtlist
!= rdp
->nxttail
[RCU_DONE_TAIL
]],
88 per_cpu(rcu_cpu_has_work
, rdp
->cpu
),
89 convert_kthread_status(per_cpu(rcu_cpu_kthread_status
,
91 per_cpu(rcu_cpu_kthread_cpu
, rdp
->cpu
),
92 per_cpu(rcu_cpu_kthread_loops
, rdp
->cpu
) & 0xffff,
94 seq_printf(m
, " ci=%lu co=%lu ca=%lu\n",
95 rdp
->n_cbs_invoked
, rdp
->n_cbs_orphaned
, rdp
->n_cbs_adopted
);
98 #define PRINT_RCU_DATA(name, func, m) \
102 for_each_possible_cpu(_p_r_d_i) \
103 func(m, &per_cpu(name, _p_r_d_i)); \
106 static int show_rcudata(struct seq_file
*m
, void *unused
)
108 #ifdef CONFIG_TREE_PREEMPT_RCU
109 seq_puts(m
, "rcu_preempt:\n");
110 PRINT_RCU_DATA(rcu_preempt_data
, print_one_rcu_data
, m
);
111 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
112 seq_puts(m
, "rcu_sched:\n");
113 PRINT_RCU_DATA(rcu_sched_data
, print_one_rcu_data
, m
);
114 seq_puts(m
, "rcu_bh:\n");
115 PRINT_RCU_DATA(rcu_bh_data
, print_one_rcu_data
, m
);
119 static int rcudata_open(struct inode
*inode
, struct file
*file
)
121 return single_open(file
, show_rcudata
, NULL
);
124 static const struct file_operations rcudata_fops
= {
125 .owner
= THIS_MODULE
,
126 .open
= rcudata_open
,
129 .release
= single_release
,
132 static void print_one_rcu_data_csv(struct seq_file
*m
, struct rcu_data
*rdp
)
134 if (!rdp
->beenonline
)
136 seq_printf(m
, "%d,%s,%lu,%lu,%d,%lu,%d",
138 cpu_is_offline(rdp
->cpu
) ? "\"N\"" : "\"Y\"",
139 rdp
->completed
, rdp
->gpnum
,
140 rdp
->passed_quiesc
, rdp
->passed_quiesc_completed
,
143 seq_printf(m
, ",%d,%d,%d,%lu",
144 atomic_read(&rdp
->dynticks
->dynticks
),
145 rdp
->dynticks
->dynticks_nesting
,
146 rdp
->dynticks
->dynticks_nmi_nesting
,
148 #endif /* #ifdef CONFIG_NO_HZ */
149 seq_printf(m
, ",%lu,%lu", rdp
->offline_fqs
, rdp
->resched_ipi
);
150 seq_printf(m
, ",%ld,\"%c%c%c%c\",%d,\"%c\",%ld", rdp
->qlen
,
151 ".N"[rdp
->nxttail
[RCU_NEXT_READY_TAIL
] !=
152 rdp
->nxttail
[RCU_NEXT_TAIL
]],
153 ".R"[rdp
->nxttail
[RCU_WAIT_TAIL
] !=
154 rdp
->nxttail
[RCU_NEXT_READY_TAIL
]],
155 ".W"[rdp
->nxttail
[RCU_DONE_TAIL
] !=
156 rdp
->nxttail
[RCU_WAIT_TAIL
]],
157 ".D"[&rdp
->nxtlist
!= rdp
->nxttail
[RCU_DONE_TAIL
]],
158 per_cpu(rcu_cpu_has_work
, rdp
->cpu
),
159 convert_kthread_status(per_cpu(rcu_cpu_kthread_status
,
162 seq_printf(m
, ",%lu,%lu,%lu\n",
163 rdp
->n_cbs_invoked
, rdp
->n_cbs_orphaned
, rdp
->n_cbs_adopted
);
166 static int show_rcudata_csv(struct seq_file
*m
, void *unused
)
168 seq_puts(m
, "\"CPU\",\"Online?\",\"c\",\"g\",\"pq\",\"pqc\",\"pq\",");
170 seq_puts(m
, "\"dt\",\"dt nesting\",\"dt NMI nesting\",\"df\",");
171 #endif /* #ifdef CONFIG_NO_HZ */
172 seq_puts(m
, "\"of\",\"ri\",\"ql\",\"b\",\"ci\",\"co\",\"ca\"\n");
173 #ifdef CONFIG_TREE_PREEMPT_RCU
174 seq_puts(m
, "\"rcu_preempt:\"\n");
175 PRINT_RCU_DATA(rcu_preempt_data
, print_one_rcu_data_csv
, m
);
176 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
177 seq_puts(m
, "\"rcu_sched:\"\n");
178 PRINT_RCU_DATA(rcu_sched_data
, print_one_rcu_data_csv
, m
);
179 seq_puts(m
, "\"rcu_bh:\"\n");
180 PRINT_RCU_DATA(rcu_bh_data
, print_one_rcu_data_csv
, m
);
184 static int rcudata_csv_open(struct inode
*inode
, struct file
*file
)
186 return single_open(file
, show_rcudata_csv
, NULL
);
189 static const struct file_operations rcudata_csv_fops
= {
190 .owner
= THIS_MODULE
,
191 .open
= rcudata_csv_open
,
194 .release
= single_release
,
197 #ifdef CONFIG_RCU_BOOST
199 static void print_one_rcu_node_boost(struct seq_file
*m
, struct rcu_node
*rnp
)
201 seq_printf(m
, "%d:%d tasks=%c%c%c%c kt=%c ntb=%lu neb=%lu nnb=%lu "
203 rnp
->grplo
, rnp
->grphi
,
204 "T."[list_empty(&rnp
->blkd_tasks
)],
205 "N."[!rnp
->gp_tasks
],
206 "E."[!rnp
->exp_tasks
],
207 "B."[!rnp
->boost_tasks
],
208 convert_kthread_status(rnp
->boost_kthread_status
),
209 rnp
->n_tasks_boosted
, rnp
->n_exp_boosts
,
210 rnp
->n_normal_boosts
,
211 (int)(jiffies
& 0xffff),
212 (int)(rnp
->boost_time
& 0xffff));
213 seq_printf(m
, "%s: nt=%lu egt=%lu bt=%lu nb=%lu ny=%lu nos=%lu\n",
215 rnp
->n_balk_blkd_tasks
,
216 rnp
->n_balk_exp_gp_tasks
,
217 rnp
->n_balk_boost_tasks
,
218 rnp
->n_balk_notblocked
,
223 static int show_rcu_node_boost(struct seq_file
*m
, void *unused
)
225 struct rcu_node
*rnp
;
227 rcu_for_each_leaf_node(&rcu_preempt_state
, rnp
)
228 print_one_rcu_node_boost(m
, rnp
);
232 static int rcu_node_boost_open(struct inode
*inode
, struct file
*file
)
234 return single_open(file
, show_rcu_node_boost
, NULL
);
237 static const struct file_operations rcu_node_boost_fops
= {
238 .owner
= THIS_MODULE
,
239 .open
= rcu_node_boost_open
,
242 .release
= single_release
,
246 * Create the rcuboost debugfs entry. Standard error return.
248 static int rcu_boost_trace_create_file(struct dentry
*rcudir
)
250 return !debugfs_create_file("rcuboost", 0444, rcudir
, NULL
,
251 &rcu_node_boost_fops
);
254 #else /* #ifdef CONFIG_RCU_BOOST */
256 static int rcu_boost_trace_create_file(struct dentry
*rcudir
)
258 return 0; /* There cannot be an error if we didn't create it! */
261 #endif /* #else #ifdef CONFIG_RCU_BOOST */
263 static void print_one_rcu_state(struct seq_file
*m
, struct rcu_state
*rsp
)
267 struct rcu_node
*rnp
;
270 seq_printf(m
, "c=%lu g=%lu s=%d jfq=%ld j=%x "
271 "nfqs=%lu/nfqsng=%lu(%lu) fqlh=%lu\n",
272 rsp
->completed
, gpnum
, rsp
->signaled
,
273 (long)(rsp
->jiffies_force_qs
- jiffies
),
274 (int)(jiffies
& 0xffff),
275 rsp
->n_force_qs
, rsp
->n_force_qs_ngp
,
276 rsp
->n_force_qs
- rsp
->n_force_qs_ngp
,
278 for (rnp
= &rsp
->node
[0]; rnp
- &rsp
->node
[0] < NUM_RCU_NODES
; rnp
++) {
279 if (rnp
->level
!= level
) {
283 seq_printf(m
, "%lx/%lx %c%c>%c %d:%d ^%d ",
284 rnp
->qsmask
, rnp
->qsmaskinit
,
285 ".G"[rnp
->gp_tasks
!= NULL
],
286 ".E"[rnp
->exp_tasks
!= NULL
],
287 ".T"[!list_empty(&rnp
->blkd_tasks
)],
288 rnp
->grplo
, rnp
->grphi
, rnp
->grpnum
);
293 static int show_rcuhier(struct seq_file
*m
, void *unused
)
295 #ifdef CONFIG_TREE_PREEMPT_RCU
296 seq_puts(m
, "rcu_preempt:\n");
297 print_one_rcu_state(m
, &rcu_preempt_state
);
298 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
299 seq_puts(m
, "rcu_sched:\n");
300 print_one_rcu_state(m
, &rcu_sched_state
);
301 seq_puts(m
, "rcu_bh:\n");
302 print_one_rcu_state(m
, &rcu_bh_state
);
306 static int rcuhier_open(struct inode
*inode
, struct file
*file
)
308 return single_open(file
, show_rcuhier
, NULL
);
311 static const struct file_operations rcuhier_fops
= {
312 .owner
= THIS_MODULE
,
313 .open
= rcuhier_open
,
316 .release
= single_release
,
319 static void show_one_rcugp(struct seq_file
*m
, struct rcu_state
*rsp
)
322 unsigned long completed
;
326 struct rcu_node
*rnp
= &rsp
->node
[0];
328 raw_spin_lock_irqsave(&rnp
->lock
, flags
);
329 completed
= rsp
->completed
;
331 if (rsp
->completed
== rsp
->gpnum
)
334 gpage
= jiffies
- rsp
->gp_start
;
336 raw_spin_unlock_irqrestore(&rnp
->lock
, flags
);
337 seq_printf(m
, "%s: completed=%ld gpnum=%lu age=%ld max=%ld\n",
338 rsp
->name
, completed
, gpnum
, gpage
, gpmax
);
341 static int show_rcugp(struct seq_file
*m
, void *unused
)
343 #ifdef CONFIG_TREE_PREEMPT_RCU
344 show_one_rcugp(m
, &rcu_preempt_state
);
345 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
346 show_one_rcugp(m
, &rcu_sched_state
);
347 show_one_rcugp(m
, &rcu_bh_state
);
351 static int rcugp_open(struct inode
*inode
, struct file
*file
)
353 return single_open(file
, show_rcugp
, NULL
);
356 static const struct file_operations rcugp_fops
= {
357 .owner
= THIS_MODULE
,
361 .release
= single_release
,
364 static void print_one_rcu_pending(struct seq_file
*m
, struct rcu_data
*rdp
)
366 seq_printf(m
, "%3d%cnp=%ld "
367 "qsp=%ld rpq=%ld cbr=%ld cng=%ld "
368 "gpc=%ld gps=%ld nf=%ld nn=%ld\n",
370 cpu_is_offline(rdp
->cpu
) ? '!' : ' ',
372 rdp
->n_rp_qs_pending
,
375 rdp
->n_rp_cpu_needs_gp
,
376 rdp
->n_rp_gp_completed
,
377 rdp
->n_rp_gp_started
,
379 rdp
->n_rp_need_nothing
);
382 static void print_rcu_pendings(struct seq_file
*m
, struct rcu_state
*rsp
)
385 struct rcu_data
*rdp
;
387 for_each_possible_cpu(cpu
) {
388 rdp
= per_cpu_ptr(rsp
->rda
, cpu
);
390 print_one_rcu_pending(m
, rdp
);
394 static int show_rcu_pending(struct seq_file
*m
, void *unused
)
396 #ifdef CONFIG_TREE_PREEMPT_RCU
397 seq_puts(m
, "rcu_preempt:\n");
398 print_rcu_pendings(m
, &rcu_preempt_state
);
399 #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
400 seq_puts(m
, "rcu_sched:\n");
401 print_rcu_pendings(m
, &rcu_sched_state
);
402 seq_puts(m
, "rcu_bh:\n");
403 print_rcu_pendings(m
, &rcu_bh_state
);
407 static int rcu_pending_open(struct inode
*inode
, struct file
*file
)
409 return single_open(file
, show_rcu_pending
, NULL
);
412 static const struct file_operations rcu_pending_fops
= {
413 .owner
= THIS_MODULE
,
414 .open
= rcu_pending_open
,
417 .release
= single_release
,
420 static int show_rcutorture(struct seq_file
*m
, void *unused
)
422 seq_printf(m
, "rcutorture test sequence: %lu %s\n",
423 rcutorture_testseq
>> 1,
424 (rcutorture_testseq
& 0x1) ? "(test in progress)" : "");
425 seq_printf(m
, "rcutorture update version number: %lu\n",
430 static int rcutorture_open(struct inode
*inode
, struct file
*file
)
432 return single_open(file
, show_rcutorture
, NULL
);
435 static const struct file_operations rcutorture_fops
= {
436 .owner
= THIS_MODULE
,
437 .open
= rcutorture_open
,
440 .release
= single_release
,
443 static struct dentry
*rcudir
;
445 static int __init
rcutree_trace_init(void)
447 struct dentry
*retval
;
449 rcudir
= debugfs_create_dir("rcu", NULL
);
453 retval
= debugfs_create_file("rcudata", 0444, rcudir
,
454 NULL
, &rcudata_fops
);
458 retval
= debugfs_create_file("rcudata.csv", 0444, rcudir
,
459 NULL
, &rcudata_csv_fops
);
463 if (rcu_boost_trace_create_file(rcudir
))
466 retval
= debugfs_create_file("rcugp", 0444, rcudir
, NULL
, &rcugp_fops
);
470 retval
= debugfs_create_file("rcuhier", 0444, rcudir
,
471 NULL
, &rcuhier_fops
);
475 retval
= debugfs_create_file("rcu_pending", 0444, rcudir
,
476 NULL
, &rcu_pending_fops
);
480 retval
= debugfs_create_file("rcutorture", 0444, rcudir
,
481 NULL
, &rcutorture_fops
);
486 debugfs_remove_recursive(rcudir
);
490 static void __exit
rcutree_trace_cleanup(void)
492 debugfs_remove_recursive(rcudir
);
496 module_init(rcutree_trace_init
);
497 module_exit(rcutree_trace_cleanup
);
499 MODULE_AUTHOR("Paul E. McKenney");
500 MODULE_DESCRIPTION("Read-Copy Update tracing for hierarchical implementation");
501 MODULE_LICENSE("GPL");