Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141017
b: refs/heads/master
c: 75c8b41
h: refs/heads/master
i:
  141015: 0cb9f0e
v: v3
  • Loading branch information
Tom Zanussi authored and Ingo Molnar committed Mar 23, 2009
1 parent d39773c commit 580524a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 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: b118415bfad6d75792a85ac999e25149db8e6919
refs/heads/master: 75c8b417526529d0a7072e4d93ec99dbd483a6f4
6 changes: 2 additions & 4 deletions trunk/kernel/trace/trace_events_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,9 @@ int filter_print_preds(struct filter_pred **preds, char *buf)
static struct ftrace_event_field *
find_event_field(struct ftrace_event_call *call, char *name)
{
struct ftrace_event_field *field;
struct list_head *entry, *tmp;
struct ftrace_event_field *field, *next;

list_for_each_safe(entry, tmp, &call->fields) {
field = list_entry(entry, struct ftrace_event_field, link);
list_for_each_entry_safe(field, next, &call->fields, link) {
if (!strcmp(field->name, name))
return field;
}
Expand Down

0 comments on commit 580524a

Please sign in to comment.