2008-09-19 06:06:43 -04:00
|
|
|
/*
|
|
|
|
* nop tracer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Steven Noonan <steven@uplinklabs.net>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/debugfs.h>
|
|
|
|
#include <linux/ftrace.h>
|
|
|
|
|
|
|
|
#include "trace.h"
|
|
|
|
|
|
|
|
static struct trace_array *ctx_trace;
|
|
|
|
|
|
|
|
static void start_nop_trace(struct trace_array *tr)
|
|
|
|
{
|
|
|
|
/* Nothing to do! */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void stop_nop_trace(struct trace_array *tr)
|
|
|
|
{
|
|
|
|
/* Nothing to do! */
|
|
|
|
}
|
|
|
|
|
2008-11-15 23:57:26 -05:00
|
|
|
static int nop_trace_init(struct trace_array *tr)
|
2008-09-19 06:06:43 -04:00
|
|
|
{
|
2008-09-21 14:10:14 -04:00
|
|
|
int cpu;
|
2008-09-19 06:06:43 -04:00
|
|
|
ctx_trace = tr;
|
|
|
|
|
2008-09-21 14:10:14 -04:00
|
|
|
for_each_online_cpu(cpu)
|
2008-09-29 23:02:41 -04:00
|
|
|
tracing_reset(tr, cpu);
|
2008-09-21 14:10:14 -04:00
|
|
|
|
2008-11-07 22:36:02 -05:00
|
|
|
start_nop_trace(tr);
|
2008-11-15 23:57:26 -05:00
|
|
|
return 0;
|
2008-09-19 06:06:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void nop_trace_reset(struct trace_array *tr)
|
|
|
|
{
|
2008-11-07 22:36:02 -05:00
|
|
|
stop_nop_trace(tr);
|
2008-09-19 06:06:43 -04:00
|
|
|
}
|
|
|
|
|
2008-09-21 14:16:30 -04:00
|
|
|
struct tracer nop_trace __read_mostly =
|
2008-09-19 06:06:43 -04:00
|
|
|
{
|
|
|
|
.name = "nop",
|
|
|
|
.init = nop_trace_init,
|
|
|
|
.reset = nop_trace_reset,
|
|
|
|
#ifdef CONFIG_FTRACE_SELFTEST
|
|
|
|
.selftest = trace_selftest_startup_nop,
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|