tracing: Extract duplicate ftrace_raw_init_event_foo()
Use a generic trace_event_raw_init() function for all event's raw_init callbacks (but kprobes) instead of defining the same version for each of these. This shrinks the kernel code: text data bss dec hex filename 5355293 1961928 7103260 14420481 dc0a01 vmlinux.o.old 5346802 1961864 7103260 14411926 dbe896 vmlinux.o raw_init can't be removed, because ftrace events and kprobe events use different raw_init callbacks. Though it's possible to totally remove raw_init, I choose to leave it as it is for now. Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Acked-by: Steven Rostedt <rostedt@goodmis.org> Cc: Jason Baron <jbaron@redhat.com> Cc: Ingo Molnar <mingo@elte.hu> LKML-Reference: <4B1DC48C.7080603@cn.fujitsu.com> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
This commit is contained in:
parent
4819568f23
commit
87d9b4e1c5
|
@ -158,6 +158,7 @@ enum {
|
||||||
FILTER_PTR_STRING,
|
FILTER_PTR_STRING,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extern int trace_event_raw_init(struct ftrace_event_call *call);
|
||||||
extern int trace_define_common_fields(struct ftrace_event_call *call);
|
extern int trace_define_common_fields(struct ftrace_event_call *call);
|
||||||
extern int trace_define_field(struct ftrace_event_call *call, const char *type,
|
extern int trace_define_field(struct ftrace_event_call *call, const char *type,
|
||||||
const char *name, int offset, int size,
|
const char *name, int offset, int size,
|
||||||
|
|
|
@ -145,7 +145,7 @@ struct perf_event_attr;
|
||||||
.name = "sys_enter"#sname, \
|
.name = "sys_enter"#sname, \
|
||||||
.system = "syscalls", \
|
.system = "syscalls", \
|
||||||
.event = &enter_syscall_print_##sname, \
|
.event = &enter_syscall_print_##sname, \
|
||||||
.raw_init = init_syscall_trace, \
|
.raw_init = trace_event_raw_init, \
|
||||||
.show_format = syscall_enter_format, \
|
.show_format = syscall_enter_format, \
|
||||||
.define_fields = syscall_enter_define_fields, \
|
.define_fields = syscall_enter_define_fields, \
|
||||||
.regfunc = reg_event_syscall_enter, \
|
.regfunc = reg_event_syscall_enter, \
|
||||||
|
@ -167,7 +167,7 @@ struct perf_event_attr;
|
||||||
.name = "sys_exit"#sname, \
|
.name = "sys_exit"#sname, \
|
||||||
.system = "syscalls", \
|
.system = "syscalls", \
|
||||||
.event = &exit_syscall_print_##sname, \
|
.event = &exit_syscall_print_##sname, \
|
||||||
.raw_init = init_syscall_trace, \
|
.raw_init = trace_event_raw_init, \
|
||||||
.show_format = syscall_exit_format, \
|
.show_format = syscall_exit_format, \
|
||||||
.define_fields = syscall_exit_define_fields, \
|
.define_fields = syscall_exit_define_fields, \
|
||||||
.regfunc = reg_event_syscall_exit, \
|
.regfunc = reg_event_syscall_exit, \
|
||||||
|
|
|
@ -623,23 +623,12 @@ static void ftrace_profile_disable_##name(struct ftrace_event_call *unused)\
|
||||||
* .trace = ftrace_raw_output_<call>, <-- stage 2
|
* .trace = ftrace_raw_output_<call>, <-- stage 2
|
||||||
* };
|
* };
|
||||||
*
|
*
|
||||||
* static int ftrace_raw_init_event_<call>(struct ftrace_event_call *unused)
|
|
||||||
* {
|
|
||||||
* int id;
|
|
||||||
*
|
|
||||||
* id = register_ftrace_event(&ftrace_event_type_<call>);
|
|
||||||
* if (!id)
|
|
||||||
* return -ENODEV;
|
|
||||||
* event_<call>.id = id;
|
|
||||||
* return 0;
|
|
||||||
* }
|
|
||||||
*
|
|
||||||
* static struct ftrace_event_call __used
|
* static struct ftrace_event_call __used
|
||||||
* __attribute__((__aligned__(4)))
|
* __attribute__((__aligned__(4)))
|
||||||
* __attribute__((section("_ftrace_events"))) event_<call> = {
|
* __attribute__((section("_ftrace_events"))) event_<call> = {
|
||||||
* .name = "<call>",
|
* .name = "<call>",
|
||||||
* .system = "<system>",
|
* .system = "<system>",
|
||||||
* .raw_init = ftrace_raw_init_event_<call>,
|
* .raw_init = trace_event_raw_init,
|
||||||
* .regfunc = ftrace_reg_event_<call>,
|
* .regfunc = ftrace_reg_event_<call>,
|
||||||
* .unregfunc = ftrace_unreg_event_<call>,
|
* .unregfunc = ftrace_unreg_event_<call>,
|
||||||
* .show_format = ftrace_format_<call>,
|
* .show_format = ftrace_format_<call>,
|
||||||
|
@ -647,9 +636,6 @@ static void ftrace_profile_disable_##name(struct ftrace_event_call *unused)\
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#undef TP_FMT
|
|
||||||
#define TP_FMT(fmt, args...) fmt "\n", ##args
|
|
||||||
|
|
||||||
#ifdef CONFIG_EVENT_PROFILE
|
#ifdef CONFIG_EVENT_PROFILE
|
||||||
|
|
||||||
#define _TRACE_PROFILE_INIT(call) \
|
#define _TRACE_PROFILE_INIT(call) \
|
||||||
|
@ -744,19 +730,7 @@ static void ftrace_raw_unreg_event_##call(struct ftrace_event_call *unused)\
|
||||||
\
|
\
|
||||||
static struct trace_event ftrace_event_type_##call = { \
|
static struct trace_event ftrace_event_type_##call = { \
|
||||||
.trace = ftrace_raw_output_##call, \
|
.trace = ftrace_raw_output_##call, \
|
||||||
}; \
|
};
|
||||||
\
|
|
||||||
static int ftrace_raw_init_event_##call(struct ftrace_event_call *unused)\
|
|
||||||
{ \
|
|
||||||
int id; \
|
|
||||||
\
|
|
||||||
id = register_ftrace_event(&ftrace_event_type_##call); \
|
|
||||||
if (!id) \
|
|
||||||
return -ENODEV; \
|
|
||||||
event_##call.id = id; \
|
|
||||||
INIT_LIST_HEAD(&event_##call.fields); \
|
|
||||||
return 0; \
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef DEFINE_EVENT_PRINT
|
#undef DEFINE_EVENT_PRINT
|
||||||
#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
|
#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
|
||||||
|
@ -776,7 +750,7 @@ __attribute__((section("_ftrace_events"))) event_##call = { \
|
||||||
.name = #call, \
|
.name = #call, \
|
||||||
.system = __stringify(TRACE_SYSTEM), \
|
.system = __stringify(TRACE_SYSTEM), \
|
||||||
.event = &ftrace_event_type_##call, \
|
.event = &ftrace_event_type_##call, \
|
||||||
.raw_init = ftrace_raw_init_event_##call, \
|
.raw_init = trace_event_raw_init, \
|
||||||
.regfunc = ftrace_raw_reg_event_##call, \
|
.regfunc = ftrace_raw_reg_event_##call, \
|
||||||
.unregfunc = ftrace_raw_unreg_event_##call, \
|
.unregfunc = ftrace_raw_unreg_event_##call, \
|
||||||
.show_format = ftrace_format_##template, \
|
.show_format = ftrace_format_##template, \
|
||||||
|
@ -793,7 +767,7 @@ __attribute__((section("_ftrace_events"))) event_##call = { \
|
||||||
.name = #call, \
|
.name = #call, \
|
||||||
.system = __stringify(TRACE_SYSTEM), \
|
.system = __stringify(TRACE_SYSTEM), \
|
||||||
.event = &ftrace_event_type_##call, \
|
.event = &ftrace_event_type_##call, \
|
||||||
.raw_init = ftrace_raw_init_event_##call, \
|
.raw_init = trace_event_raw_init, \
|
||||||
.regfunc = ftrace_raw_reg_event_##call, \
|
.regfunc = ftrace_raw_reg_event_##call, \
|
||||||
.unregfunc = ftrace_raw_unreg_event_##call, \
|
.unregfunc = ftrace_raw_unreg_event_##call, \
|
||||||
.show_format = ftrace_format_##call, \
|
.show_format = ftrace_format_##call, \
|
||||||
|
@ -953,7 +927,6 @@ end: \
|
||||||
perf_swevent_put_recursion_context(rctx); \
|
perf_swevent_put_recursion_context(rctx); \
|
||||||
end_recursion: \
|
end_recursion: \
|
||||||
local_irq_restore(irq_flags); \
|
local_irq_restore(irq_flags); \
|
||||||
\
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef DEFINE_EVENT
|
#undef DEFINE_EVENT
|
||||||
|
|
|
@ -105,6 +105,20 @@ void trace_destroy_fields(struct ftrace_event_call *call)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int trace_event_raw_init(struct ftrace_event_call *call)
|
||||||
|
{
|
||||||
|
int id;
|
||||||
|
|
||||||
|
id = register_ftrace_event(call->event);
|
||||||
|
if (!id)
|
||||||
|
return -ENODEV;
|
||||||
|
call->id = id;
|
||||||
|
INIT_LIST_HEAD(&call->fields);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(trace_event_raw_init);
|
||||||
|
|
||||||
static void ftrace_event_enable_disable(struct ftrace_event_call *call,
|
static void ftrace_event_enable_disable(struct ftrace_event_call *call,
|
||||||
int enable)
|
int enable)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue