aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavo@embeddedor.com>2019-02-12 15:54:30 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-03-01 08:54:00 -0500
commit10c3405f060397e565e4f75c403859f9a074bfa5 (patch)
treef868049bffa7363b21752aecc4f83184a4fb228d /kernel
parent7c5b019e3a638a5a290b0ec020f6ca83d2ec2aaa (diff)
perf: Mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. This patch fixes the following warning: kernel/events/core.c: In function ‘perf_event_parse_addr_filter’: kernel/events/core.c:9154:11: warning: this statement may fall through [-Wimplicit-fallthrough=] kernel = 1; ~~~~~~~^~~ kernel/events/core.c:9156:3: note: here case IF_SRC_FILEADDR: ^~~~ Warning level 3 was used: -Wimplicit-fallthrough=3 This patch is part of the ongoing efforts to enable -Wimplicit-fallthrough. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Gustavo A. R. Silva <gustavo@embeddedor.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Kees Kook <keescook@chromium.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/20190212205430.GA8446@embeddedor Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/events/core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/events/core.c b/kernel/events/core.c
index dd9698ad3d66..6fb27b564730 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -9175,6 +9175,7 @@ perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
9175 case IF_SRC_KERNELADDR: 9175 case IF_SRC_KERNELADDR:
9176 case IF_SRC_KERNEL: 9176 case IF_SRC_KERNEL:
9177 kernel = 1; 9177 kernel = 1;
9178 /* fall through */
9178 9179
9179 case IF_SRC_FILEADDR: 9180 case IF_SRC_FILEADDR:
9180 case IF_SRC_FILE: 9181 case IF_SRC_FILE: