2 * Infrastructure for statistic tracing (histogram output).
4 * Copyright (C) 2008 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/debugfs.h>
14 #include "trace_stat.h"
18 /* List of stat entries from a tracer */
19 struct trace_stat_list {
20 struct list_head list;
24 /* A stat session is the stats output in one file */
25 struct tracer_stat_session {
26 struct list_head session_list;
27 struct tracer_stat *ts;
28 struct list_head stat_list;
29 struct mutex stat_mutex;
33 /* All of the sessions currently in use. Each stat file embeed one session */
34 static LIST_HEAD(all_stat_sessions);
35 static DEFINE_MUTEX(all_stat_sessions_mutex);
37 /* The root directory for all stat files */
38 static struct dentry *stat_dir;
41 static void reset_stat_session(struct tracer_stat_session *session)
43 struct trace_stat_list *node, *next;
45 list_for_each_entry_safe(node, next, &session->stat_list, list)
48 INIT_LIST_HEAD(&session->stat_list);
51 static void destroy_session(struct tracer_stat_session *session)
53 debugfs_remove(session->file);
54 reset_stat_session(session);
55 mutex_destroy(&session->stat_mutex);
60 * For tracers that don't provide a stat_cmp callback.
61 * This one will force an immediate insertion on tail of
64 static int dummy_cmp(void *p1, void *p2)
70 * Initialize the stat list at each trace_stat file opening.
71 * All of these copies and sorting are required on all opening
72 * since the stats could have changed between two file sessions.
74 static int stat_seq_init(struct tracer_stat_session *session)
76 struct trace_stat_list *iter_entry, *new_entry;
77 struct tracer_stat *ts = session->ts;
82 mutex_lock(&session->stat_mutex);
83 reset_stat_session(session);
86 ts->stat_cmp = dummy_cmp;
89 * The first entry. Actually this is the second, but the first
90 * one (the stat_list head) is pointless.
92 new_entry = kmalloc(sizeof(struct trace_stat_list), GFP_KERNEL);
98 INIT_LIST_HEAD(&new_entry->list);
100 list_add(&new_entry->list, &session->stat_list);
102 new_entry->stat = ts->stat_start();
103 prev_stat = new_entry->stat;
106 * Iterate over the tracer stat entries and store them in a sorted
110 new_entry = kmalloc(sizeof(struct trace_stat_list), GFP_KERNEL);
116 INIT_LIST_HEAD(&new_entry->list);
117 new_entry->stat = ts->stat_next(prev_stat, i);
119 /* End of insertion */
120 if (!new_entry->stat)
123 list_for_each_entry(iter_entry, &session->stat_list, list) {
125 /* Insertion with a descendent sorting */
126 if (ts->stat_cmp(new_entry->stat,
127 iter_entry->stat) > 0) {
129 list_add_tail(&new_entry->list,
133 /* The current smaller value */
134 } else if (list_is_last(&iter_entry->list,
135 &session->stat_list)) {
136 list_add(&new_entry->list, &iter_entry->list);
141 prev_stat = new_entry->stat;
144 mutex_unlock(&session->stat_mutex);
148 reset_stat_session(session);
149 mutex_unlock(&session->stat_mutex);
154 static void *stat_seq_start(struct seq_file *s, loff_t *pos)
156 struct tracer_stat_session *session = s->private;
158 /* Prevent from tracer switch or stat_list modification */
159 mutex_lock(&session->stat_mutex);
161 /* If we are in the beginning of the file, print the headers */
162 if (!*pos && session->ts->stat_headers)
163 session->ts->stat_headers(s);
165 return seq_list_start(&session->stat_list, *pos);
168 static void *stat_seq_next(struct seq_file *s, void *p, loff_t *pos)
170 struct tracer_stat_session *session = s->private;
172 return seq_list_next(p, &session->stat_list, pos);
175 static void stat_seq_stop(struct seq_file *s, void *p)
177 struct tracer_stat_session *session = s->private;
178 mutex_unlock(&session->stat_mutex);
181 static int stat_seq_show(struct seq_file *s, void *v)
183 struct tracer_stat_session *session = s->private;
184 struct trace_stat_list *l = list_entry(v, struct trace_stat_list, list);
186 return session->ts->stat_show(s, l->stat);
189 static const struct seq_operations trace_stat_seq_ops = {
190 .start = stat_seq_start,
191 .next = stat_seq_next,
192 .stop = stat_seq_stop,
193 .show = stat_seq_show
196 /* The session stat is refilled and resorted at each stat file opening */
197 static int tracing_stat_open(struct inode *inode, struct file *file)
201 struct tracer_stat_session *session = inode->i_private;
203 ret = seq_open(file, &trace_stat_seq_ops);
205 struct seq_file *m = file->private_data;
206 m->private = session;
207 ret = stat_seq_init(session);
214 * Avoid consuming memory with our now useless list.
216 static int tracing_stat_release(struct inode *i, struct file *f)
218 struct tracer_stat_session *session = i->i_private;
220 mutex_lock(&session->stat_mutex);
221 reset_stat_session(session);
222 mutex_unlock(&session->stat_mutex);
227 static const struct file_operations tracing_stat_fops = {
228 .open = tracing_stat_open,
231 .release = tracing_stat_release
234 static int tracing_stat_init(void)
236 struct dentry *d_tracing;
238 d_tracing = tracing_init_dentry();
240 stat_dir = debugfs_create_dir("trace_stat", d_tracing);
242 pr_warning("Could not create debugfs "
243 "'trace_stat' entry\n");
247 static int init_stat_file(struct tracer_stat_session *session)
249 if (!stat_dir && tracing_stat_init())
252 session->file = debugfs_create_file(session->ts->name, 0644,
254 session, &tracing_stat_fops);
260 int register_stat_tracer(struct tracer_stat *trace)
262 struct tracer_stat_session *session, *node, *tmp;
268 if (!trace->stat_start || !trace->stat_next || !trace->stat_show)
271 /* Already registered? */
272 mutex_lock(&all_stat_sessions_mutex);
273 list_for_each_entry_safe(node, tmp, &all_stat_sessions, session_list) {
274 if (node->ts == trace) {
275 mutex_unlock(&all_stat_sessions_mutex);
279 mutex_unlock(&all_stat_sessions_mutex);
281 /* Init the session */
282 session = kmalloc(sizeof(struct tracer_stat_session), GFP_KERNEL);
287 INIT_LIST_HEAD(&session->session_list);
288 INIT_LIST_HEAD(&session->stat_list);
289 mutex_init(&session->stat_mutex);
290 session->file = NULL;
292 ret = init_stat_file(session);
294 destroy_session(session);
299 mutex_lock(&all_stat_sessions_mutex);
300 list_add_tail(&session->session_list, &all_stat_sessions);
301 mutex_unlock(&all_stat_sessions_mutex);
306 void unregister_stat_tracer(struct tracer_stat *trace)
308 struct tracer_stat_session *node, *tmp;
310 mutex_lock(&all_stat_sessions_mutex);
311 list_for_each_entry_safe(node, tmp, &all_stat_sessions, session_list) {
312 if (node->ts == trace) {
313 list_del(&node->session_list);
314 destroy_session(node);
318 mutex_unlock(&all_stat_sessions_mutex);