lkml.org 
[lkml]   [2019]   [Jul]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] KVM: arm64: mark expected switch fall-through in HYP
Date
Mark switch cases where we are expecting to fall through,
fixes a 130+ lines warning.

Signed-off-by: Matteo Croce <mcroce@redhat.com>
---
arch/arm64/kvm/hyp/debug-sr.c | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)

diff --git a/arch/arm64/kvm/hyp/debug-sr.c b/arch/arm64/kvm/hyp/debug-sr.c
index 26781da3ad3e..c648c243f98b 100644
--- a/arch/arm64/kvm/hyp/debug-sr.c
+++ b/arch/arm64/kvm/hyp/debug-sr.c
@@ -18,40 +18,70 @@
#define save_debug(ptr,reg,nr) \
switch (nr) { \
case 15: ptr[15] = read_debug(reg, 15); \
+ /* fallthrough */ \
case 14: ptr[14] = read_debug(reg, 14); \
+ /* fallthrough */ \
case 13: ptr[13] = read_debug(reg, 13); \
+ /* fallthrough */ \
case 12: ptr[12] = read_debug(reg, 12); \
+ /* fallthrough */ \
case 11: ptr[11] = read_debug(reg, 11); \
+ /* fallthrough */ \
case 10: ptr[10] = read_debug(reg, 10); \
+ /* fallthrough */ \
case 9: ptr[9] = read_debug(reg, 9); \
+ /* fallthrough */ \
case 8: ptr[8] = read_debug(reg, 8); \
+ /* fallthrough */ \
case 7: ptr[7] = read_debug(reg, 7); \
+ /* fallthrough */ \
case 6: ptr[6] = read_debug(reg, 6); \
+ /* fallthrough */ \
case 5: ptr[5] = read_debug(reg, 5); \
+ /* fallthrough */ \
case 4: ptr[4] = read_debug(reg, 4); \
+ /* fallthrough */ \
case 3: ptr[3] = read_debug(reg, 3); \
+ /* fallthrough */ \
case 2: ptr[2] = read_debug(reg, 2); \
+ /* fallthrough */ \
case 1: ptr[1] = read_debug(reg, 1); \
+ /* fallthrough */ \
default: ptr[0] = read_debug(reg, 0); \
}

#define restore_debug(ptr,reg,nr) \
switch (nr) { \
case 15: write_debug(ptr[15], reg, 15); \
+ /* fallthrough */ \
case 14: write_debug(ptr[14], reg, 14); \
+ /* fallthrough */ \
case 13: write_debug(ptr[13], reg, 13); \
+ /* fallthrough */ \
case 12: write_debug(ptr[12], reg, 12); \
+ /* fallthrough */ \
case 11: write_debug(ptr[11], reg, 11); \
+ /* fallthrough */ \
case 10: write_debug(ptr[10], reg, 10); \
+ /* fallthrough */ \
case 9: write_debug(ptr[9], reg, 9); \
+ /* fallthrough */ \
case 8: write_debug(ptr[8], reg, 8); \
+ /* fallthrough */ \
case 7: write_debug(ptr[7], reg, 7); \
+ /* fallthrough */ \
case 6: write_debug(ptr[6], reg, 6); \
+ /* fallthrough */ \
case 5: write_debug(ptr[5], reg, 5); \
+ /* fallthrough */ \
case 4: write_debug(ptr[4], reg, 4); \
+ /* fallthrough */ \
case 3: write_debug(ptr[3], reg, 3); \
+ /* fallthrough */ \
case 2: write_debug(ptr[2], reg, 2); \
+ /* fallthrough */ \
case 1: write_debug(ptr[1], reg, 1); \
+ /* fallthrough */ \
default: write_debug(ptr[0], reg, 0); \
}

--
2.21.0
\
 
 \ /
  Last update: 2019-07-29 01:20    [W:0.108 / U:0.112 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site