OSDN Git Service

tracing: Replace usage of found with dedicated list iterator variable
authorJakob Koschel <jakobkoschel@gmail.com>
Wed, 27 Apr 2022 17:07:33 +0000 (19:07 +0200)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Wed, 27 Apr 2022 21:19:31 +0000 (17:19 -0400)
commit45e333ce2ad5cbb0ee05686336de09058c6af8ca
treef91abe334550ad6c07218b86cc4a3ae29ea52c66
parent99d8ae4ec8a90ecf6c2a6a141bd4db4a3bc5146c
tracing: Replace usage of found with dedicated list iterator variable

To move the list iterator variable into the list_for_each_entry_*()
macro in the future it should be avoided to use the list iterator
variable after the loop body.

To *never* use the list iterator variable after the loop it was
concluded to use a separate iterator variable instead of a
found boolean [1].

This removes the need to use a found variable and simply checking if
the variable was set, can determine if the break/goto was hit.

Link: https://lkml.kernel.org/r/20220427170734.819891-4-jakobkoschel@gmail.com
Cc: Ingo Molnar <mingo@redhat.com>
Link: https://lore.kernel.org/all/CAHk-=wgRr_D8CB-D9Kg-c=EHreAsk5SqXPwr9Y7k9sA6cWXJ6w@mail.gmail.com/
Signed-off-by: Jakob Koschel <jakobkoschel@gmail.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
kernel/trace/trace_events_hist.c
kernel/trace/trace_events_trigger.c