Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205291
b: refs/heads/master
c: ffb9f99
h: refs/heads/master
i:
  205289: 33f126a
  205287: 06d0035
v: v3
  • Loading branch information
Li Zefan authored and Steven Rostedt committed Jun 28, 2010
1 parent f624fc8 commit da4373a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c9d932cf8a1c608b676021aef0189376ba6ef151
refs/heads/master: ffb9f99528574ab9a55d4c8fd22e9d3ca49efa86
8 changes: 1 addition & 7 deletions trunk/kernel/trace/trace_export.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,6 @@ ftrace_define_fields_##name(struct ftrace_event_call *event_call) \

#include "trace_entries.h"

static int ftrace_raw_init_event(struct ftrace_event_call *call)
{
INIT_LIST_HEAD(&call->class->fields);
return 0;
}

#undef __entry
#define __entry REC

Expand Down Expand Up @@ -158,7 +152,7 @@ static int ftrace_raw_init_event(struct ftrace_event_call *call)
struct ftrace_event_class event_class_ftrace_##call = { \
.system = __stringify(TRACE_SYSTEM), \
.define_fields = ftrace_define_fields_##call, \
.raw_init = ftrace_raw_init_event, \
.fields = LIST_HEAD_INIT(event_class_ftrace_##call.fields),\
}; \
\
struct ftrace_event_call __used \
Expand Down
10 changes: 1 addition & 9 deletions trunk/kernel/trace/trace_kprobe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1214,11 +1214,6 @@ static void probe_event_disable(struct ftrace_event_call *call)
}
}

static int probe_event_raw_init(struct ftrace_event_call *event_call)
{
return 0;
}

#undef DEFINE_FIELD
#define DEFINE_FIELD(type, item, name, is_signed) \
do { \
Expand Down Expand Up @@ -1486,15 +1481,12 @@ static int register_probe_event(struct trace_probe *tp)
int ret;

/* Initialize ftrace_event_call */
INIT_LIST_HEAD(&call->class->fields);
if (probe_is_return(tp)) {
INIT_LIST_HEAD(&call->class->fields);
call->event.funcs = &kretprobe_funcs;
call->class->raw_init = probe_event_raw_init;
call->class->define_fields = kretprobe_event_define_fields;
} else {
INIT_LIST_HEAD(&call->class->fields);
call->event.funcs = &kprobe_funcs;
call->class->raw_init = probe_event_raw_init;
call->class->define_fields = kprobe_event_define_fields;
}
if (set_print_fmt(tp) < 0)
Expand Down

0 comments on commit da4373a

Please sign in to comment.