diff options
author | Tom Zanussi <tzanussi@gmail.com> | 2009-03-24 03:14:01 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-24 03:26:51 -0400 |
commit | 1fc2d5c11918082536acf261ce6abb1f5511053f (patch) | |
tree | ee8834467628c39a0a213503f888d11b31365f56 | |
parent | 1618536961d31f9b3f55767b22d4a897f4204c26 (diff) |
tracing/filters: use list_for_each_entry
Impact: cleanup
No need to use the safe version here, so use list_for_each_entry instead
of list_for_each_entry_safe in find_event_field().
Signed-off-by: Tom Zanussi <tzanussi@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: =?ISO-8859-1?Q?Fr=E9d=E9ric?= Weisbecker <fweisbec@gmail.com>
LKML-Reference: <1237878841.8339.57.camel@charm-linux>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | kernel/trace/trace_events_filter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c index 4117c2ebc245..3f0b79f8a4bc 100644 --- a/kernel/trace/trace_events_filter.c +++ b/kernel/trace/trace_events_filter.c | |||
@@ -147,9 +147,9 @@ int filter_print_preds(struct filter_pred **preds, char *buf) | |||
147 | static struct ftrace_event_field * | 147 | static struct ftrace_event_field * |
148 | find_event_field(struct ftrace_event_call *call, char *name) | 148 | find_event_field(struct ftrace_event_call *call, char *name) |
149 | { | 149 | { |
150 | struct ftrace_event_field *field, *next; | 150 | struct ftrace_event_field *field; |
151 | 151 | ||
152 | list_for_each_entry_safe(field, next, &call->fields, link) { | 152 | list_for_each_entry(field, &call->fields, link) { |
153 | if (!strcmp(field->name, name)) | 153 | if (!strcmp(field->name, name)) |
154 | return field; | 154 | return field; |
155 | } | 155 | } |