Skip to content

Commit

Permalink
tracing/filters: use list_for_each_entry
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Tom Zanussi authored and Ingo Molnar committed Mar 24, 2009
1 parent 1618536 commit 1fc2d5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/trace/trace_events_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +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, *next;
struct ftrace_event_field *field;

list_for_each_entry_safe(field, next, &call->fields, link) {
list_for_each_entry(field, &call->fields, link) {
if (!strcmp(field->name, name))
return field;
}
Expand Down

0 comments on commit 1fc2d5c

Please sign in to comment.