Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 175429
b: refs/heads/master
c: 822a696
h: refs/heads/master
i:
  175427: 26c66cf
v: v3
  • Loading branch information
Frederic Weisbecker authored and Ingo Molnar committed Dec 9, 2009
1 parent c73f32e commit bc434c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: ec89a06fd4e12301f11ab039ee07d2353a18addc
refs/heads/master: 822a6961112f0c9101d3359d8524604c3309ee6c
4 changes: 2 additions & 2 deletions trunk/kernel/trace/trace_kprobe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ static int kprobe_event_define_fields(struct ftrace_event_call *event_call)
struct trace_probe *tp = (struct trace_probe *)event_call->data;

ret = trace_define_common_fields(event_call);
if (!ret)
if (ret)
return ret;

DEFINE_FIELD(unsigned long, ip, FIELD_STRING_IP, 0);
Expand All @@ -1151,7 +1151,7 @@ static int kretprobe_event_define_fields(struct ftrace_event_call *event_call)
struct trace_probe *tp = (struct trace_probe *)event_call->data;

ret = trace_define_common_fields(event_call);
if (!ret)
if (ret)
return ret;

DEFINE_FIELD(unsigned long, func, FIELD_STRING_FUNC, 0);
Expand Down

0 comments on commit bc434c8

Please sign in to comment.