Commit 61f919a1 authored by Steven Rostedt's avatar Steven Rostedt Committed by Steven Rostedt

tracing/events: fix compile for modules disabled

Impact: compile fix

The addition of TRACE_EVENT for modules breaks the build for when
modules are disabled. This code fixes that.
Reported-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 6d723736
...@@ -797,6 +797,7 @@ event_create_dir(struct ftrace_event_call *call, struct dentry *d_events) ...@@ -797,6 +797,7 @@ event_create_dir(struct ftrace_event_call *call, struct dentry *d_events)
(unsigned long)event < (unsigned long)end; \ (unsigned long)event < (unsigned long)end; \
event++) event++)
#ifdef CONFIG_MODULES
static void trace_module_add_events(struct module *mod) static void trace_module_add_events(struct module *mod)
{ {
struct ftrace_event_call *call, *start, *end; struct ftrace_event_call *call, *start, *end;
...@@ -840,7 +841,7 @@ static void trace_module_remove_events(struct module *mod) ...@@ -840,7 +841,7 @@ static void trace_module_remove_events(struct module *mod)
} }
} }
int trace_module_notify(struct notifier_block *self, static int trace_module_notify(struct notifier_block *self,
unsigned long val, void *data) unsigned long val, void *data)
{ {
struct module *mod = data; struct module *mod = data;
...@@ -858,6 +859,13 @@ int trace_module_notify(struct notifier_block *self, ...@@ -858,6 +859,13 @@ int trace_module_notify(struct notifier_block *self,
return 0; return 0;
} }
#else
static int trace_module_notify(struct notifier_block *self,
unsigned long val, void *data)
{
return 0;
}
#endif /* CONFIG_MODULES */
struct notifier_block trace_module_nb = { struct notifier_block trace_module_nb = {
.notifier_call = trace_module_notify, .notifier_call = trace_module_notify,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment