x86/boot: Add a fallthrough annotation
authorBorislav Petkov <bp@suse.de>
Thu, 16 May 2024 10:22:40 +0000 (12:22 +0200)
committerIngo Molnar <mingo@kernel.org>
Thu, 16 May 2024 10:46:36 +0000 (12:46 +0200)
Add implicit fallthrough checking to the decompressor code and fix this
warning:

  arch/x86/boot/printf.c: In function ‘vsprintf’:
  arch/x86/boot/printf.c:248:10: warning: this statement may fall through [-Wimplicit-fallthrough=]
    248 |    flags |= SMALL;
        |          ^
  arch/x86/boot/printf.c:249:3: note: here
    249 |   case 'X':
        |   ^~~~

This is a patch from three years ago which I found in my trees, thus the
SUSE authorship still.

Signed-off-by: Borislav Petkov <bp@suse.de>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20240516102240.16270-1-bp@kernel.org
arch/x86/boot/Makefile
arch/x86/boot/printf.c

index 3cece19b74732f8565d670a6f133fba0eadc3fc9..343aef6d752ff0dd325a86bb97cd08a8c20a5396 100644 (file)
@@ -69,6 +69,7 @@ KBUILD_CFLAGS := $(REALMODE_CFLAGS) -D_SETUP
 KBUILD_AFLAGS  := $(KBUILD_CFLAGS) -D__ASSEMBLY__
 KBUILD_CFLAGS  += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
 KBUILD_CFLAGS  += -fno-asynchronous-unwind-tables
+KBUILD_CFLAGS  += $(CONFIG_CC_IMPLICIT_FALLTHROUGH)
 GCOV_PROFILE := n
 UBSAN_SANITIZE := n
 
index 1237beeb95400fea188bd1a7a82a294aa77b712c..c0ec1dc355abd8c4d6af3ed6214055d38a4f5378 100644 (file)
@@ -246,6 +246,7 @@ int vsprintf(char *buf, const char *fmt, va_list args)
 
                case 'x':
                        flags |= SMALL;
+                       fallthrough;
                case 'X':
                        base = 16;
                        break;