Skip to content

Commit

Permalink
tracing/syscalls: Annotate raw_init function with __init
Browse files Browse the repository at this point in the history
init_syscall_trace() can only be called during kernel bootup only, so we can
mark it and the functions it calls as __init.

Link: http://lkml.kernel.org/r/[email protected]

Signed-off-by: Li Zefan <[email protected]>
Signed-off-by: Steven Rostedt <[email protected]>
  • Loading branch information
lizf-os authored and rostedt committed Aug 22, 2013
1 parent 9457158 commit 3ddc77f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions kernel/trace/trace_syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ extern char *__bad_type_size(void);
#type, #name, offsetof(typeof(trace), name), \
sizeof(trace.name), is_signed_type(type)

static
int __set_enter_print_fmt(struct syscall_metadata *entry, char *buf, int len)
static int __init
__set_enter_print_fmt(struct syscall_metadata *entry, char *buf, int len)
{
int i;
int pos = 0;
Expand All @@ -228,7 +228,7 @@ int __set_enter_print_fmt(struct syscall_metadata *entry, char *buf, int len)
return pos;
}

static int set_syscall_print_fmt(struct ftrace_event_call *call)
static int __init set_syscall_print_fmt(struct ftrace_event_call *call)
{
char *print_fmt;
int len;
Expand All @@ -253,7 +253,7 @@ static int set_syscall_print_fmt(struct ftrace_event_call *call)
return 0;
}

static void free_syscall_print_fmt(struct ftrace_event_call *call)
static void __init free_syscall_print_fmt(struct ftrace_event_call *call)
{
struct syscall_metadata *entry = call->data;

Expand Down Expand Up @@ -459,7 +459,7 @@ static void unreg_event_syscall_exit(struct ftrace_event_file *file,
mutex_unlock(&syscall_trace_lock);
}

static int init_syscall_trace(struct ftrace_event_call *call)
static int __init init_syscall_trace(struct ftrace_event_call *call)
{
int id;
int num;
Expand Down

0 comments on commit 3ddc77f

Please sign in to comment.