|
@@ -4330,16 +4330,11 @@ static void ftrace_init_module(struct module *mod,
|
|
|
ftrace_process_locs(mod, start, end);
|
|
|
}
|
|
|
|
|
|
-static int ftrace_module_notify_enter(struct notifier_block *self,
|
|
|
- unsigned long val, void *data)
|
|
|
+void ftrace_module_init(struct module *mod)
|
|
|
{
|
|
|
- struct module *mod = data;
|
|
|
-
|
|
|
- if (val == MODULE_STATE_COMING)
|
|
|
- ftrace_init_module(mod, mod->ftrace_callsites,
|
|
|
- mod->ftrace_callsites +
|
|
|
- mod->num_ftrace_callsites);
|
|
|
- return 0;
|
|
|
+ ftrace_init_module(mod, mod->ftrace_callsites,
|
|
|
+ mod->ftrace_callsites +
|
|
|
+ mod->num_ftrace_callsites);
|
|
|
}
|
|
|
|
|
|
static int ftrace_module_notify_exit(struct notifier_block *self,
|
|
@@ -4353,11 +4348,6 @@ static int ftrace_module_notify_exit(struct notifier_block *self,
|
|
|
return 0;
|
|
|
}
|
|
|
#else
|
|
|
-static int ftrace_module_notify_enter(struct notifier_block *self,
|
|
|
- unsigned long val, void *data)
|
|
|
-{
|
|
|
- return 0;
|
|
|
-}
|
|
|
static int ftrace_module_notify_exit(struct notifier_block *self,
|
|
|
unsigned long val, void *data)
|
|
|
{
|
|
@@ -4365,11 +4355,6 @@ static int ftrace_module_notify_exit(struct notifier_block *self,
|
|
|
}
|
|
|
#endif /* CONFIG_MODULES */
|
|
|
|
|
|
-struct notifier_block ftrace_module_enter_nb = {
|
|
|
- .notifier_call = ftrace_module_notify_enter,
|
|
|
- .priority = INT_MAX, /* Run before anything that can use kprobes */
|
|
|
-};
|
|
|
-
|
|
|
struct notifier_block ftrace_module_exit_nb = {
|
|
|
.notifier_call = ftrace_module_notify_exit,
|
|
|
.priority = INT_MIN, /* Run after anything that can remove kprobes */
|
|
@@ -4403,10 +4388,6 @@ void __init ftrace_init(void)
|
|
|
__start_mcount_loc,
|
|
|
__stop_mcount_loc);
|
|
|
|
|
|
- ret = register_module_notifier(&ftrace_module_enter_nb);
|
|
|
- if (ret)
|
|
|
- pr_warning("Failed to register trace ftrace module enter notifier\n");
|
|
|
-
|
|
|
ret = register_module_notifier(&ftrace_module_exit_nb);
|
|
|
if (ret)
|
|
|
pr_warning("Failed to register trace ftrace module exit notifier\n");
|