2 * Infrastructure for statistic tracing (histogram output).
4 * Copyright (C) 2008-2009 Frederic Weisbecker <fweisbec@gmail.com>
6 * Based on the code from trace_branch.c which is
7 * Copyright (C) 2008 Steven Rostedt <srostedt@redhat.com>
12 #include <linux/list.h>
13 #include <linux/rbtree.h>
14 #include <linux/debugfs.h>
15 #include "trace_stat.h"
20 * List of stat red-black nodes from a tracer
21 * We use a such tree to sort quickly the stat
22 * entries from the tracer.
29 /* A stat session is the stats output in one file */
31 struct list_head session_list;
32 struct tracer_stat *ts;
33 struct rb_root stat_root;
34 struct mutex stat_mutex;
38 /* All of the sessions currently in use. Each stat file embed one session */
39 static LIST_HEAD(all_stat_sessions);
40 static DEFINE_MUTEX(all_stat_sessions_mutex);
42 /* The root directory for all stat files */
43 static struct dentry *stat_dir;
46 * Iterate through the rbtree using a post order traversal path
47 * to release the next node.
48 * It won't necessary release one at each iteration
49 * but it will at least advance closer to the next one
52 static struct rb_node *release_next(struct rb_node *node)
54 struct stat_node *snode;
55 struct rb_node *parent = rb_parent(node);
59 else if (node->rb_right)
60 return node->rb_right;
64 else if (parent->rb_left == node)
65 parent->rb_left = NULL;
67 parent->rb_right = NULL;
69 snode = container_of(node, struct stat_node, node);
76 static void reset_stat_session(struct stat_session *session)
78 struct rb_node *node = session->stat_root.rb_node;
81 node = release_next(node);
83 session->stat_root = RB_ROOT;
86 static void destroy_session(struct stat_session *session)
88 debugfs_remove(session->file);
89 reset_stat_session(session);
90 mutex_destroy(&session->stat_mutex);
94 typedef int (*cmp_stat_t)(void *, void *);
96 static int insert_stat(struct rb_root *root, void *stat, cmp_stat_t cmp)
98 struct rb_node **new = &(root->rb_node), *parent = NULL;
99 struct stat_node *data;
101 data = kzalloc(sizeof(*data), GFP_KERNEL);
107 * Figure out where to put new node
108 * This is a descendent sorting
111 struct stat_node *this;
114 this = container_of(*new, struct stat_node, node);
115 result = cmp(data->stat, this->stat);
119 new = &((*new)->rb_left);
121 new = &((*new)->rb_right);
124 rb_link_node(&data->node, parent, new);
125 rb_insert_color(&data->node, root);
130 * For tracers that don't provide a stat_cmp callback.
131 * This one will force an insertion as right-most node
134 static int dummy_cmp(void *p1, void *p2)
140 * Initialize the stat rbtree at each trace_stat file opening.
141 * All of these copies and sorting are required on all opening
142 * since the stats could have changed between two file sessions.
144 static int stat_seq_init(struct stat_session *session)
146 struct tracer_stat *ts = session->ts;
147 struct rb_root *root = &session->stat_root;
152 mutex_lock(&session->stat_mutex);
153 reset_stat_session(session);
156 ts->stat_cmp = dummy_cmp;
158 stat = ts->stat_start(ts);
162 ret = insert_stat(root, stat, ts->stat_cmp);
167 * Iterate over the tracer stat entries and store them in an rbtree.
170 stat = ts->stat_next(stat, i);
172 /* End of insertion */
176 ret = insert_stat(root, stat, ts->stat_cmp);
178 goto exit_free_rbtree;
182 mutex_unlock(&session->stat_mutex);
186 reset_stat_session(session);
187 mutex_unlock(&session->stat_mutex);
192 static void *stat_seq_start(struct seq_file *s, loff_t *pos)
194 struct stat_session *session = s->private;
195 struct rb_node *node;
198 /* Prevent from tracer switch or rbtree modification */
199 mutex_lock(&session->stat_mutex);
201 /* If we are in the beginning of the file, print the headers */
202 if (!*pos && session->ts->stat_headers) {
204 return SEQ_START_TOKEN;
207 node = rb_first(&session->stat_root);
208 for (i = 0; node && i < *pos; i++)
209 node = rb_next(node);
216 static void *stat_seq_next(struct seq_file *s, void *p, loff_t *pos)
218 struct stat_session *session = s->private;
219 struct rb_node *node = p;
223 if (p == SEQ_START_TOKEN)
224 return rb_first(&session->stat_root);
226 return rb_next(node);
229 static void stat_seq_stop(struct seq_file *s, void *p)
231 struct stat_session *session = s->private;
232 mutex_unlock(&session->stat_mutex);
235 static int stat_seq_show(struct seq_file *s, void *v)
237 struct stat_session *session = s->private;
238 struct stat_node *l = container_of(v, struct stat_node, node);
240 if (v == SEQ_START_TOKEN)
241 return session->ts->stat_headers(s);
243 return session->ts->stat_show(s, l->stat);
246 static const struct seq_operations trace_stat_seq_ops = {
247 .start = stat_seq_start,
248 .next = stat_seq_next,
249 .stop = stat_seq_stop,
250 .show = stat_seq_show
253 /* The session stat is refilled and resorted at each stat file opening */
254 static int tracing_stat_open(struct inode *inode, struct file *file)
258 struct stat_session *session = inode->i_private;
260 ret = seq_open(file, &trace_stat_seq_ops);
262 struct seq_file *m = file->private_data;
263 m->private = session;
264 ret = stat_seq_init(session);
271 * Avoid consuming memory with our now useless rbtree.
273 static int tracing_stat_release(struct inode *i, struct file *f)
275 struct stat_session *session = i->i_private;
277 mutex_lock(&session->stat_mutex);
278 reset_stat_session(session);
279 mutex_unlock(&session->stat_mutex);
284 static const struct file_operations tracing_stat_fops = {
285 .open = tracing_stat_open,
288 .release = tracing_stat_release
291 static int tracing_stat_init(void)
293 struct dentry *d_tracing;
295 d_tracing = tracing_init_dentry();
297 stat_dir = debugfs_create_dir("trace_stat", d_tracing);
299 pr_warning("Could not create debugfs "
300 "'trace_stat' entry\n");
304 static int init_stat_file(struct stat_session *session)
306 if (!stat_dir && tracing_stat_init())
309 session->file = debugfs_create_file(session->ts->name, 0644,
311 session, &tracing_stat_fops);
317 int register_stat_tracer(struct tracer_stat *trace)
319 struct stat_session *session, *node;
325 if (!trace->stat_start || !trace->stat_next || !trace->stat_show)
328 /* Already registered? */
329 mutex_lock(&all_stat_sessions_mutex);
330 list_for_each_entry(node, &all_stat_sessions, session_list) {
331 if (node->ts == trace) {
332 mutex_unlock(&all_stat_sessions_mutex);
336 mutex_unlock(&all_stat_sessions_mutex);
338 /* Init the session */
339 session = kzalloc(sizeof(*session), GFP_KERNEL);
344 INIT_LIST_HEAD(&session->session_list);
345 mutex_init(&session->stat_mutex);
347 ret = init_stat_file(session);
349 destroy_session(session);
354 mutex_lock(&all_stat_sessions_mutex);
355 list_add_tail(&session->session_list, &all_stat_sessions);
356 mutex_unlock(&all_stat_sessions_mutex);
361 void unregister_stat_tracer(struct tracer_stat *trace)
363 struct stat_session *node, *tmp;
365 mutex_lock(&all_stat_sessions_mutex);
366 list_for_each_entry_safe(node, tmp, &all_stat_sessions, session_list) {
367 if (node->ts == trace) {
368 list_del(&node->session_list);
369 destroy_session(node);
373 mutex_unlock(&all_stat_sessions_mutex);