blob: 4d8fdf3184dce4a897565b6fb4b3bfeba1a8152d [file] [log] [blame]
Steven Rostedt1f0d69a2008-11-12 00:14:39 -05001/*
2 * unlikely profiler
3 *
4 * Copyright (C) 2008 Steven Rostedt <srostedt@redhat.com>
5 */
6#include <linux/kallsyms.h>
7#include <linux/seq_file.h>
8#include <linux/spinlock.h>
Frederic Weisbecker65c6dc62008-11-29 04:12:46 +01009#include <linux/irqflags.h>
Steven Rostedt1f0d69a2008-11-12 00:14:39 -050010#include <linux/uaccess.h>
11#include <linux/module.h>
12#include <linux/ftrace.h>
13#include <linux/hash.h>
14#include <linux/fs.h>
15#include <asm/local.h>
Steven Rostedtf633cef2008-12-23 23:24:13 -050016
Steven Rostedt1f0d69a2008-11-12 00:14:39 -050017#include "trace.h"
Frederic Weisbecker002bb862009-01-10 11:34:13 -080018#include "trace_stat.h"
Steven Rostedtf633cef2008-12-23 23:24:13 -050019#include "trace_output.h"
Steven Rostedt1f0d69a2008-11-12 00:14:39 -050020
Steven Rostedt2ed84ee2008-11-12 15:24:24 -050021#ifdef CONFIG_BRANCH_TRACER
Steven Rostedt52f232c2008-11-12 00:14:40 -050022
Frederic Weisbecker002bb862009-01-10 11:34:13 -080023static struct tracer branch_trace;
Steven Rostedt9f029e82008-11-12 15:24:24 -050024static int branch_tracing_enabled __read_mostly;
25static DEFINE_MUTEX(branch_tracing_mutex);
Frederic Weisbeckere302cf32008-12-27 23:25:38 +010026
Steven Rostedt9f029e82008-11-12 15:24:24 -050027static struct trace_array *branch_tracer;
Steven Rostedt52f232c2008-11-12 00:14:40 -050028
29static void
Steven Rostedt (VMware)068f5302017-01-19 08:57:41 -050030probe_likely_condition(struct ftrace_likely_data *f, int val, int expect)
Steven Rostedt52f232c2008-11-12 00:14:40 -050031{
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -040032 struct trace_event_call *call = &event_branch;
Steven Rostedt9f029e82008-11-12 15:24:24 -050033 struct trace_array *tr = branch_tracer;
Steven Rostedta7603ff2012-08-06 16:24:11 -040034 struct trace_array_cpu *data;
Steven Rostedt52f232c2008-11-12 00:14:40 -050035 struct ring_buffer_event *event;
Steven Rostedt9f029e82008-11-12 15:24:24 -050036 struct trace_branch *entry;
Steven Rostedt8f6e8a32009-10-07 21:53:41 -040037 struct ring_buffer *buffer;
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -020038 unsigned long flags;
Steven Rostedt (Red Hat)6224beb2015-07-07 15:05:03 -040039 int pc;
Steven Rostedt52f232c2008-11-12 00:14:40 -050040 const char *p;
41
Steven Rostedt (Red Hat)6224beb2015-07-07 15:05:03 -040042 if (current->trace_recursion & TRACE_BRANCH_BIT)
43 return;
44
Steven Rostedt52f232c2008-11-12 00:14:40 -050045 /*
46 * I would love to save just the ftrace_likely_data pointer, but
47 * this code can also be used by modules. Ugly things can happen
48 * if the module is unloaded, and then we go and read the
49 * pointer. This is slower, but much safer.
50 */
51
52 if (unlikely(!tr))
53 return;
54
Steven Rostedt (Red Hat)6224beb2015-07-07 15:05:03 -040055 raw_local_irq_save(flags);
56 current->trace_recursion |= TRACE_BRANCH_BIT;
57 data = this_cpu_ptr(tr->trace_buffer.data);
58 if (atomic_read(&data->disabled))
Steven Rostedt52f232c2008-11-12 00:14:40 -050059 goto out;
60
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -020061 pc = preempt_count();
Steven Rostedt (Red Hat)153e8ed2013-03-08 10:40:07 -050062 buffer = tr->trace_buffer.buffer;
Steven Rostedt8f6e8a32009-10-07 21:53:41 -040063 event = trace_buffer_lock_reserve(buffer, TRACE_BRANCH,
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -020064 sizeof(*entry), flags, pc);
Steven Rostedt52f232c2008-11-12 00:14:40 -050065 if (!event)
66 goto out;
67
Steven Rostedt52f232c2008-11-12 00:14:40 -050068 entry = ring_buffer_event_data(event);
Steven Rostedt52f232c2008-11-12 00:14:40 -050069
70 /* Strip off the path, only save the file */
Steven Rostedt (VMware)068f5302017-01-19 08:57:41 -050071 p = f->data.file + strlen(f->data.file);
72 while (p >= f->data.file && *p != '/')
Steven Rostedt52f232c2008-11-12 00:14:40 -050073 p--;
74 p++;
75
Steven Rostedt (VMware)068f5302017-01-19 08:57:41 -050076 strncpy(entry->func, f->data.func, TRACE_FUNC_SIZE);
Steven Rostedt52f232c2008-11-12 00:14:40 -050077 strncpy(entry->file, p, TRACE_FILE_SIZE);
78 entry->func[TRACE_FUNC_SIZE] = 0;
79 entry->file[TRACE_FILE_SIZE] = 0;
Steven Rostedt (VMware)068f5302017-01-19 08:57:41 -050080 entry->constant = f->constant;
81 entry->line = f->data.line;
Steven Rostedt52f232c2008-11-12 00:14:40 -050082 entry->correct = val == expect;
83
Tom Zanussif306cc82013-10-24 08:34:17 -050084 if (!call_filter_check_discard(call, entry, buffer, event))
Steven Rostedt (Red Hat)52ffabe32016-11-23 20:28:38 -050085 trace_buffer_unlock_commit_nostack(buffer, event);
Steven Rostedt52f232c2008-11-12 00:14:40 -050086
87 out:
Steven Rostedt (Red Hat)6224beb2015-07-07 15:05:03 -040088 current->trace_recursion &= ~TRACE_BRANCH_BIT;
89 raw_local_irq_restore(flags);
Steven Rostedt52f232c2008-11-12 00:14:40 -050090}
91
92static inline
Steven Rostedt (VMware)068f5302017-01-19 08:57:41 -050093void trace_likely_condition(struct ftrace_likely_data *f, int val, int expect)
Steven Rostedt52f232c2008-11-12 00:14:40 -050094{
Steven Rostedt9f029e82008-11-12 15:24:24 -050095 if (!branch_tracing_enabled)
Steven Rostedt52f232c2008-11-12 00:14:40 -050096 return;
97
98 probe_likely_condition(f, val, expect);
99}
100
Steven Rostedt9f029e82008-11-12 15:24:24 -0500101int enable_branch_tracing(struct trace_array *tr)
Steven Rostedt52f232c2008-11-12 00:14:40 -0500102{
Steven Rostedt9f029e82008-11-12 15:24:24 -0500103 mutex_lock(&branch_tracing_mutex);
104 branch_tracer = tr;
Steven Rostedt52f232c2008-11-12 00:14:40 -0500105 /*
106 * Must be seen before enabling. The reader is a condition
107 * where we do not need a matching rmb()
108 */
109 smp_wmb();
Steven Rostedt9f029e82008-11-12 15:24:24 -0500110 branch_tracing_enabled++;
111 mutex_unlock(&branch_tracing_mutex);
Steven Rostedt52f232c2008-11-12 00:14:40 -0500112
Wenji Huangf54fc982009-02-10 01:02:46 -0500113 return 0;
Steven Rostedt52f232c2008-11-12 00:14:40 -0500114}
115
Steven Rostedt9f029e82008-11-12 15:24:24 -0500116void disable_branch_tracing(void)
Steven Rostedt52f232c2008-11-12 00:14:40 -0500117{
Steven Rostedt9f029e82008-11-12 15:24:24 -0500118 mutex_lock(&branch_tracing_mutex);
Steven Rostedt52f232c2008-11-12 00:14:40 -0500119
Steven Rostedt9f029e82008-11-12 15:24:24 -0500120 if (!branch_tracing_enabled)
Steven Rostedt52f232c2008-11-12 00:14:40 -0500121 goto out_unlock;
122
Steven Rostedt9f029e82008-11-12 15:24:24 -0500123 branch_tracing_enabled--;
Steven Rostedt52f232c2008-11-12 00:14:40 -0500124
125 out_unlock:
Steven Rostedt9f029e82008-11-12 15:24:24 -0500126 mutex_unlock(&branch_tracing_mutex);
Steven Rostedt52f232c2008-11-12 00:14:40 -0500127}
Steven Rostedt80e5ea42008-11-12 15:24:24 -0500128
Frederic Weisbecker1c800252008-11-16 05:57:26 +0100129static int branch_trace_init(struct trace_array *tr)
Steven Rostedt80e5ea42008-11-12 15:24:24 -0500130{
Dmitry Safonov30616922015-10-16 16:04:49 +0300131 return enable_branch_tracing(tr);
Steven Rostedt80e5ea42008-11-12 15:24:24 -0500132}
133
134static void branch_trace_reset(struct trace_array *tr)
135{
Dmitry Safonov30616922015-10-16 16:04:49 +0300136 disable_branch_tracing();
Steven Rostedt80e5ea42008-11-12 15:24:24 -0500137}
138
Arnaldo Carvalho de Meloae7462b2009-02-03 22:05:50 -0200139static enum print_line_t trace_branch_print(struct trace_iterator *iter,
Steven Rostedta9a57762010-04-22 18:46:14 -0400140 int flags, struct trace_event *event)
Steven Rostedtf633cef2008-12-23 23:24:13 -0500141{
142 struct trace_branch *field;
143
Arnaldo Carvalho de Melo2c9b2382009-02-02 20:30:12 -0200144 trace_assign_type(field, iter->ent);
Steven Rostedtf633cef2008-12-23 23:24:13 -0500145
Steven Rostedt (Red Hat)7d40f672014-11-12 13:19:06 -0500146 trace_seq_printf(&iter->seq, "[%s] %s:%s:%d\n",
147 field->correct ? " ok " : " MISS ",
148 field->func,
149 field->file,
150 field->line);
Steven Rostedtf633cef2008-12-23 23:24:13 -0500151
Steven Rostedt (Red Hat)7d40f672014-11-12 13:19:06 -0500152 return trace_handle_return(&iter->seq);
Steven Rostedtf633cef2008-12-23 23:24:13 -0500153}
154
Zhaolei557055b2009-04-13 16:02:34 +0800155static void branch_print_header(struct seq_file *s)
156{
157 seq_puts(s, "# TASK-PID CPU# TIMESTAMP CORRECT"
Rasmus Villemoesd79ac282014-11-08 21:42:11 +0100158 " FUNC:FILE:LINE\n"
159 "# | | | | | "
160 " |\n");
Zhaolei557055b2009-04-13 16:02:34 +0800161}
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100162
Steven Rostedta9a57762010-04-22 18:46:14 -0400163static struct trace_event_functions trace_branch_funcs = {
164 .trace = trace_branch_print,
165};
166
Steven Rostedtf633cef2008-12-23 23:24:13 -0500167static struct trace_event trace_branch_event = {
Steven Rostedtef180122009-03-10 14:10:56 -0400168 .type = TRACE_BRANCH,
Steven Rostedta9a57762010-04-22 18:46:14 -0400169 .funcs = &trace_branch_funcs,
Steven Rostedtf633cef2008-12-23 23:24:13 -0500170};
171
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800172static struct tracer branch_trace __read_mostly =
173{
174 .name = "branch",
175 .init = branch_trace_init,
176 .reset = branch_trace_reset,
177#ifdef CONFIG_FTRACE_SELFTEST
178 .selftest = trace_selftest_startup_branch,
179#endif /* CONFIG_FTRACE_SELFTEST */
Zhaolei557055b2009-04-13 16:02:34 +0800180 .print_header = branch_print_header,
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800181};
182
183__init static int init_branch_tracer(void)
184{
185 int ret;
186
Steven Rostedt (Red Hat)9023c932015-05-05 09:39:12 -0400187 ret = register_trace_event(&trace_branch_event);
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800188 if (!ret) {
189 printk(KERN_WARNING "Warning: could not register "
190 "branch events\n");
191 return 1;
192 }
193 return register_tracer(&branch_trace);
194}
Steven Rostedt6f415672012-10-05 12:13:07 -0400195core_initcall(init_branch_tracer);
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800196
Steven Rostedt52f232c2008-11-12 00:14:40 -0500197#else
198static inline
Steven Rostedt (VMware)068f5302017-01-19 08:57:41 -0500199void trace_likely_condition(struct ftrace_likely_data *f, int val, int expect)
Steven Rostedt52f232c2008-11-12 00:14:40 -0500200{
201}
Steven Rostedt2ed84ee2008-11-12 15:24:24 -0500202#endif /* CONFIG_BRANCH_TRACER */
Steven Rostedt52f232c2008-11-12 00:14:40 -0500203
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500204void ftrace_likely_update(struct ftrace_likely_data *f, int val,
Steven Rostedt (VMware)d45ae1f2017-01-17 12:29:35 -0500205 int expect, int is_constant)
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500206{
Steven Rostedt (VMware)d45ae1f2017-01-17 12:29:35 -0500207 /* A constant is always correct */
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500208 if (is_constant) {
209 f->constant++;
Steven Rostedt (VMware)d45ae1f2017-01-17 12:29:35 -0500210 val = expect;
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500211 }
Steven Rostedt52f232c2008-11-12 00:14:40 -0500212 /*
213 * I would love to have a trace point here instead, but the
214 * trace point code is so inundated with unlikely and likely
215 * conditions that the recursive nightmare that exists is too
216 * much to try to get working. At least for now.
217 */
Steven Rostedt (VMware)068f5302017-01-19 08:57:41 -0500218 trace_likely_condition(f, val, expect);
Steven Rostedt52f232c2008-11-12 00:14:40 -0500219
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500220 /* FIXME: Make this atomic! */
221 if (val == expect)
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500222 f->data.correct++;
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500223 else
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500224 f->data.incorrect++;
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500225}
226EXPORT_SYMBOL(ftrace_likely_update);
227
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100228extern unsigned long __start_annotated_branch_profile[];
229extern unsigned long __stop_annotated_branch_profile[];
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500230
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100231static int annotated_branch_stat_headers(struct seq_file *m)
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500232{
Rasmus Villemoesd79ac282014-11-08 21:42:11 +0100233 seq_puts(m, " correct incorrect % "
234 " Function "
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100235 " File Line\n"
236 " ------- --------- - "
237 " -------- "
238 " ---- ----\n");
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100239 return 0;
240}
241
242static inline long get_incorrect_percent(struct ftrace_branch_data *p)
243{
244 long percent;
245
246 if (p->correct) {
247 percent = p->incorrect * 100;
248 percent /= p->correct + p->incorrect;
249 } else
250 percent = p->incorrect ? 100 : -1;
251
252 return percent;
253}
254
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500255static const char *branch_stat_process_file(struct ftrace_branch_data *p)
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100256{
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100257 const char *f;
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500258
259 /* Only print the file, not the path */
260 f = p->file + strlen(p->file);
261 while (f >= p->file && *f != '/')
262 f--;
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500263 return ++f;
264}
265
266static void branch_stat_show(struct seq_file *m,
267 struct ftrace_branch_data *p, const char *f)
268{
269 long percent;
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500270
Steven Rostedt2bcd5212008-11-21 01:30:54 -0500271 /*
272 * The miss is overlayed on correct, and hit on incorrect.
273 */
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100274 percent = get_incorrect_percent(p);
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500275
Steven Rostedtbac28bf2008-11-21 01:51:53 -0500276 if (percent < 0)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100277 seq_puts(m, " X ");
Steven Rostedtbac28bf2008-11-21 01:51:53 -0500278 else
279 seq_printf(m, "%3ld ", percent);
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500280
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500281 seq_printf(m, "%-30.30s %-20.20s %d\n", p->func, f, p->line);
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500282}
283
284static int branch_stat_show_normal(struct seq_file *m,
285 struct ftrace_branch_data *p, const char *f)
286{
287 seq_printf(m, "%8lu %8lu ", p->correct, p->incorrect);
288 branch_stat_show(m, p, f);
289 return 0;
290}
291
292static int annotate_branch_stat_show(struct seq_file *m, void *v)
293{
294 struct ftrace_likely_data *p = v;
295 const char *f;
296 int l;
297
298 f = branch_stat_process_file(&p->data);
299
300 if (!p->constant)
301 return branch_stat_show_normal(m, &p->data, f);
302
303 l = snprintf(NULL, 0, "/%lu", p->constant);
304 l = l > 8 ? 0 : 8 - l;
305
306 seq_printf(m, "%8lu/%lu %*lu ",
307 p->data.correct, p->constant, l, p->data.incorrect);
308 branch_stat_show(m, &p->data, f);
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500309 return 0;
310}
311
Steven Rostedt42548002009-03-24 13:38:36 -0400312static void *annotated_branch_stat_start(struct tracer_stat *trace)
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500313{
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100314 return __start_annotated_branch_profile;
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500315}
316
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100317static void *
318annotated_branch_stat_next(void *v, int idx)
319{
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500320 struct ftrace_likely_data *p = v;
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100321
322 ++p;
323
324 if ((void *)p >= (void *)__stop_annotated_branch_profile)
325 return NULL;
326
327 return p;
328}
329
330static int annotated_branch_stat_cmp(void *p1, void *p2)
331{
332 struct ftrace_branch_data *a = p1;
333 struct ftrace_branch_data *b = p2;
334
335 long percent_a, percent_b;
336
337 percent_a = get_incorrect_percent(a);
338 percent_b = get_incorrect_percent(b);
339
340 if (percent_a < percent_b)
341 return -1;
342 if (percent_a > percent_b)
343 return 1;
Steven Rostedtede55c92010-01-27 11:25:54 -0500344
345 if (a->incorrect < b->incorrect)
346 return -1;
347 if (a->incorrect > b->incorrect)
348 return 1;
349
350 /*
351 * Since the above shows worse (incorrect) cases
352 * first, we continue that by showing best (correct)
353 * cases last.
354 */
355 if (a->correct > b->correct)
356 return -1;
357 if (a->correct < b->correct)
358 return 1;
359
360 return 0;
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100361}
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500362
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800363static struct tracer_stat annotated_branch_stats = {
364 .name = "branch_annotated",
365 .stat_start = annotated_branch_stat_start,
366 .stat_next = annotated_branch_stat_next,
367 .stat_cmp = annotated_branch_stat_cmp,
368 .stat_headers = annotated_branch_stat_headers,
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500369 .stat_show = annotate_branch_stat_show
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800370};
371
372__init static int init_annotated_branch_stats(void)
373{
374 int ret;
375
376 ret = register_stat_tracer(&annotated_branch_stats);
377 if (!ret) {
378 printk(KERN_WARNING "Warning: could not register "
379 "annotated branches stats\n");
380 return 1;
381 }
382 return 0;
383}
384fs_initcall(init_annotated_branch_stats);
385
Steven Rostedt2bcd5212008-11-21 01:30:54 -0500386#ifdef CONFIG_PROFILE_ALL_BRANCHES
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100387
Steven Rostedt2bcd5212008-11-21 01:30:54 -0500388extern unsigned long __start_branch_profile[];
389extern unsigned long __stop_branch_profile[];
390
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100391static int all_branch_stat_headers(struct seq_file *m)
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500392{
Rasmus Villemoesd79ac282014-11-08 21:42:11 +0100393 seq_puts(m, " miss hit % "
394 " Function "
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100395 " File Line\n"
396 " ------- --------- - "
397 " -------- "
398 " ---- ----\n");
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500399 return 0;
400}
401
Steven Rostedt42548002009-03-24 13:38:36 -0400402static void *all_branch_stat_start(struct tracer_stat *trace)
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100403{
404 return __start_branch_profile;
405}
406
407static void *
408all_branch_stat_next(void *v, int idx)
409{
410 struct ftrace_branch_data *p = v;
411
412 ++p;
413
414 if ((void *)p >= (void *)__stop_branch_profile)
415 return NULL;
416
417 return p;
418}
419
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500420static int all_branch_stat_show(struct seq_file *m, void *v)
421{
422 struct ftrace_branch_data *p = v;
423 const char *f;
424
425 f = branch_stat_process_file(p);
426 return branch_stat_show_normal(m, p, f);
427}
428
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800429static struct tracer_stat all_branch_stats = {
430 .name = "branch_all",
Frederic Weisbecker034939b2009-01-08 10:03:56 -0800431 .stat_start = all_branch_stat_start,
432 .stat_next = all_branch_stat_next,
433 .stat_headers = all_branch_stat_headers,
Steven Rostedt (VMware)134e6a02017-01-19 08:57:14 -0500434 .stat_show = all_branch_stat_show
Frederic Weisbecker034939b2009-01-08 10:03:56 -0800435};
Frederic Weisbecker034939b2009-01-08 10:03:56 -0800436
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800437__init static int all_annotated_branch_stats(void)
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100438{
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100439 int ret;
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800440
441 ret = register_stat_tracer(&all_branch_stats);
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100442 if (!ret) {
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800443 printk(KERN_WARNING "Warning: could not register "
444 "all branches stats\n");
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100445 return 1;
446 }
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800447 return 0;
Frederic Weisbeckere302cf32008-12-27 23:25:38 +0100448}
Frederic Weisbecker002bb862009-01-10 11:34:13 -0800449fs_initcall(all_annotated_branch_stats);
450#endif /* CONFIG_PROFILE_ALL_BRANCHES */