Commit a7237765 authored by Steven Rostedt (Red Hat)'s avatar Steven Rostedt (Red Hat) Committed by Steven Rostedt

tracing: Rename ftrace_raw_##call event structures to trace_event_raw_##call

The name "ftrace" really refers to the function hook infrastructure. It
is not about the trace_events. The ftrace_raw_##call structures are built
by macros for trace events. They have nothing to do with function tracing.
Rename them.
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 09a5059a
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* static struct trace_event_call event_<call>; * static struct trace_event_call event_<call>;
* *
* static void ftrace_raw_event_<call>(void *__data, proto) * static void trace_event_raw_event_<call>(void *__data, proto)
* { * {
* struct trace_event_file *trace_file = __data; * struct trace_event_file *trace_file = __data;
* struct trace_event_call *event_call = trace_file->event_call; * struct trace_event_call *event_call = trace_file->event_call;
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* unsigned long eflags = trace_file->flags; * unsigned long eflags = trace_file->flags;
* enum event_trigger_type __tt = ETT_NONE; * enum event_trigger_type __tt = ETT_NONE;
* struct ring_buffer_event *event; * struct ring_buffer_event *event;
* struct ftrace_raw_<call> *entry; <-- defined in stage 1 * struct trace_event_raw_<call> *entry; <-- defined in stage 1
* struct ring_buffer *buffer; * struct ring_buffer *buffer;
* unsigned long irq_flags; * unsigned long irq_flags;
* int __data_size; * int __data_size;
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
* .define_fields = ftrace_define_fields_<call>, * .define_fields = ftrace_define_fields_<call>,
* .fields = LIST_HEAD_INIT(event_class_##call.fields), * .fields = LIST_HEAD_INIT(event_class_##call.fields),
* .raw_init = trace_event_raw_init, * .raw_init = trace_event_raw_init,
* .probe = ftrace_raw_event_##call, * .probe = trace_event_raw_event_##call,
* .reg = trace_event_reg, * .reg = trace_event_reg,
* }; * };
* *
...@@ -151,12 +151,12 @@ ...@@ -151,12 +151,12 @@
#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
\ \
static notrace void \ static notrace void \
ftrace_raw_event_##call(void *__data, proto) \ trace_event_raw_event_##call(void *__data, proto) \
{ \ { \
struct trace_event_file *trace_file = __data; \ struct trace_event_file *trace_file = __data; \
struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\ struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
struct trace_event_buffer fbuffer; \ struct trace_event_buffer fbuffer; \
struct ftrace_raw_##call *entry; \ struct trace_event_raw_##call *entry; \
int __data_size; \ int __data_size; \
\ \
if (trace_trigger_soft_disabled(trace_file)) \ if (trace_trigger_soft_disabled(trace_file)) \
...@@ -186,7 +186,7 @@ ftrace_raw_event_##call(void *__data, proto) \ ...@@ -186,7 +186,7 @@ ftrace_raw_event_##call(void *__data, proto) \
#define DEFINE_EVENT(template, call, proto, args) \ #define DEFINE_EVENT(template, call, proto, args) \
static inline void ftrace_test_probe_##call(void) \ static inline void ftrace_test_probe_##call(void) \
{ \ { \
check_trace_callback_type_##call(ftrace_raw_event_##template); \ check_trace_callback_type_##call(trace_event_raw_event_##template); \
} }
#undef DEFINE_EVENT_PRINT #undef DEFINE_EVENT_PRINT
...@@ -218,7 +218,7 @@ static struct trace_event_class __used __refdata event_class_##call = { \ ...@@ -218,7 +218,7 @@ static struct trace_event_class __used __refdata event_class_##call = { \
.define_fields = ftrace_define_fields_##call, \ .define_fields = ftrace_define_fields_##call, \
.fields = LIST_HEAD_INIT(event_class_##call.fields),\ .fields = LIST_HEAD_INIT(event_class_##call.fields),\
.raw_init = trace_event_raw_init, \ .raw_init = trace_event_raw_init, \
.probe = ftrace_raw_event_##call, \ .probe = trace_event_raw_event_##call, \
.reg = trace_event_reg, \ .reg = trace_event_reg, \
_TRACE_PERF_INIT(call) \ _TRACE_PERF_INIT(call) \
}; };
...@@ -294,7 +294,7 @@ perf_trace_##call(void *__data, proto) \ ...@@ -294,7 +294,7 @@ perf_trace_##call(void *__data, proto) \
{ \ { \
struct trace_event_call *event_call = __data; \ struct trace_event_call *event_call = __data; \
struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\ struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
struct ftrace_raw_##call *entry; \ struct trace_event_raw_##call *entry; \
struct pt_regs *__regs; \ struct pt_regs *__regs; \
u64 __addr = 0, __count = 1; \ u64 __addr = 0, __count = 1; \
struct task_struct *__task = NULL; \ struct task_struct *__task = NULL; \
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* *
* Override the macros in <trace/trace_events.h> to include the following: * Override the macros in <trace/trace_events.h> to include the following:
* *
* struct ftrace_raw_<call> { * struct trace_event_raw_<call> {
* struct trace_entry ent; * struct trace_entry ent;
* <type> <item>; * <type> <item>;
* <type2> <item2>[<len>]; * <type2> <item2>[<len>];
...@@ -95,7 +95,7 @@ TRACE_MAKE_SYSTEM_STR(); ...@@ -95,7 +95,7 @@ TRACE_MAKE_SYSTEM_STR();
#undef DECLARE_EVENT_CLASS #undef DECLARE_EVENT_CLASS
#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
struct ftrace_raw_##name { \ struct trace_event_raw_##name { \
struct trace_entry ent; \ struct trace_entry ent; \
tstruct \ tstruct \
char __data[0]; \ char __data[0]; \
...@@ -206,7 +206,7 @@ TRACE_MAKE_SYSTEM_STR(); ...@@ -206,7 +206,7 @@ TRACE_MAKE_SYSTEM_STR();
* trace_raw_output_<call>(struct trace_iterator *iter, int flags) * trace_raw_output_<call>(struct trace_iterator *iter, int flags)
* { * {
* struct trace_seq *s = &iter->seq; * struct trace_seq *s = &iter->seq;
* struct ftrace_raw_<call> *field; <-- defined in stage 1 * struct trace_event_raw_<call> *field; <-- defined in stage 1
* struct trace_entry *entry; * struct trace_entry *entry;
* struct trace_seq *p = &iter->tmp_seq; * struct trace_seq *p = &iter->tmp_seq;
* int ret; * int ret;
...@@ -309,7 +309,7 @@ trace_raw_output_##call(struct trace_iterator *iter, int flags, \ ...@@ -309,7 +309,7 @@ trace_raw_output_##call(struct trace_iterator *iter, int flags, \
{ \ { \
struct trace_seq *s = &iter->seq; \ struct trace_seq *s = &iter->seq; \
struct trace_seq __maybe_unused *p = &iter->tmp_seq; \ struct trace_seq __maybe_unused *p = &iter->tmp_seq; \
struct ftrace_raw_##call *field; \ struct trace_event_raw_##call *field; \
int ret; \ int ret; \
\ \
field = (typeof(field))iter->ent; \ field = (typeof(field))iter->ent; \
...@@ -332,7 +332,7 @@ static notrace enum print_line_t \ ...@@ -332,7 +332,7 @@ static notrace enum print_line_t \
trace_raw_output_##call(struct trace_iterator *iter, int flags, \ trace_raw_output_##call(struct trace_iterator *iter, int flags, \
struct trace_event *event) \ struct trace_event *event) \
{ \ { \
struct ftrace_raw_##template *field; \ struct trace_event_raw_##template *field; \
struct trace_entry *entry; \ struct trace_entry *entry; \
struct trace_seq *p = &iter->tmp_seq; \ struct trace_seq *p = &iter->tmp_seq; \
\ \
...@@ -409,7 +409,7 @@ static struct trace_event_functions ftrace_event_type_funcs_##call = { \ ...@@ -409,7 +409,7 @@ static struct trace_event_functions ftrace_event_type_funcs_##call = { \
static int notrace __init \ static int notrace __init \
ftrace_define_fields_##call(struct trace_event_call *event_call) \ ftrace_define_fields_##call(struct trace_event_call *event_call) \
{ \ { \
struct ftrace_raw_##call field; \ struct trace_event_raw_##call field; \
int ret; \ int ret; \
\ \
tstruct; \ tstruct; \
...@@ -490,7 +490,7 @@ static inline notrace int ftrace_get_offsets_##call( \ ...@@ -490,7 +490,7 @@ static inline notrace int ftrace_get_offsets_##call( \
{ \ { \
int __data_size = 0; \ int __data_size = 0; \
int __maybe_unused __item_length; \ int __maybe_unused __item_length; \
struct ftrace_raw_##call __maybe_unused *entry; \ struct trace_event_raw_##call __maybe_unused *entry; \
\ \
tstruct; \ tstruct; \
\ \
......
...@@ -2268,7 +2268,7 @@ int ftrace_profile_set_filter(struct perf_event *event, int event_id, ...@@ -2268,7 +2268,7 @@ int ftrace_profile_set_filter(struct perf_event *event, int event_id,
static struct test_filter_data_t { static struct test_filter_data_t {
char *filter; char *filter;
struct ftrace_raw_ftrace_test_filter rec; struct trace_event_raw_ftrace_test_filter rec;
int match; int match;
char *not_visited; char *not_visited;
} test_filter_data[] = { } test_filter_data[] = {
......
...@@ -968,7 +968,7 @@ static __init int register_trigger_snapshot_cmd(void) { return 0; } ...@@ -968,7 +968,7 @@ static __init int register_trigger_snapshot_cmd(void) { return 0; }
* Skip 3: * Skip 3:
* stacktrace_trigger() * stacktrace_trigger()
* event_triggers_post_call() * event_triggers_post_call()
* ftrace_raw_event_xxx() * trace_event_raw_event_xxx()
*/ */
#define STACK_SKIP 3 #define STACK_SKIP 3
......
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