mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 14:11:20 +00:00
ftrace: remove notrace
now that we have a kbuild method for notrace, no need to pollute the C code with the annotations. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
b53dde9d34
commit
e309b41dd6
8 changed files with 130 additions and 130 deletions
|
@ -16,7 +16,7 @@
|
|||
|
||||
#include "trace.h"
|
||||
|
||||
static notrace void function_reset(struct trace_array *tr)
|
||||
static void function_reset(struct trace_array *tr)
|
||||
{
|
||||
int cpu;
|
||||
|
||||
|
@ -26,30 +26,30 @@ static notrace void function_reset(struct trace_array *tr)
|
|||
tracing_reset(tr->data[cpu]);
|
||||
}
|
||||
|
||||
static notrace void start_function_trace(struct trace_array *tr)
|
||||
static void start_function_trace(struct trace_array *tr)
|
||||
{
|
||||
function_reset(tr);
|
||||
tracing_start_function_trace();
|
||||
}
|
||||
|
||||
static notrace void stop_function_trace(struct trace_array *tr)
|
||||
static void stop_function_trace(struct trace_array *tr)
|
||||
{
|
||||
tracing_stop_function_trace();
|
||||
}
|
||||
|
||||
static notrace void function_trace_init(struct trace_array *tr)
|
||||
static void function_trace_init(struct trace_array *tr)
|
||||
{
|
||||
if (tr->ctrl)
|
||||
start_function_trace(tr);
|
||||
}
|
||||
|
||||
static notrace void function_trace_reset(struct trace_array *tr)
|
||||
static void function_trace_reset(struct trace_array *tr)
|
||||
{
|
||||
if (tr->ctrl)
|
||||
stop_function_trace(tr);
|
||||
}
|
||||
|
||||
static notrace void function_trace_ctrl_update(struct trace_array *tr)
|
||||
static void function_trace_ctrl_update(struct trace_array *tr)
|
||||
{
|
||||
if (tr->ctrl)
|
||||
start_function_trace(tr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue