]> git.baikalelectronics.ru Git - kernel.git/commit
tools lib traceevent: Fix missing break in FALSE case of pevent_filter_clear_trivial()
authorTaeung Song <treeze.taeung@gmail.com>
Fri, 12 Jan 2018 00:47:50 +0000 (19:47 -0500)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 17 Jan 2018 13:22:57 +0000 (10:22 -0300)
commit6e0ea3dcb31005191d0701c01797581b09808174
tree77be3c029ca978ff3023cd4c89adb0e0f15770b4
parent553208b0950ef8ca219a6cf2873b2dcfae225f29
tools lib traceevent: Fix missing break in FALSE case of pevent_filter_clear_trivial()

Currently the FILTER_TRIVIAL_FALSE case has a missing break statement,
if the trivial type is FALSE, it will also run into the TRUE case, and
always be skipped as the TRUE statement will continue the loop on the
inverse condition of the FALSE statement.

Reported-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Link: http://lkml.kernel.org/r/20180112004823.012918807@goodmis.org
Link: http://lkml.kernel.org/r/1493218540-12296-1-git-send-email-treeze.taeung@gmail.com
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/lib/traceevent/parse-filter.c