]> Git Repo - linux.git/commitdiff
kernel/compat.c: mark expected switch fall-throughs
authorStephen Rothwell <[email protected]>
Wed, 15 May 2019 05:23:52 +0000 (15:23 +1000)
committerLinus Torvalds <[email protected]>
Wed, 15 May 2019 15:16:14 +0000 (08:16 -0700)
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.

This patch aims to suppress 3 missing-break-in-switch false positives
on some architectures.

Acked-by: Arnd Bergmann <[email protected]>
Cc: Deepa Dinamani <[email protected]>
Cc: Gustavo A. R. Silva <[email protected]>
Cc: Kees Cook <[email protected]>
Cc: Jann Horn <[email protected]>
Signed-off-by: Stephen Rothwell <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
kernel/compat.c

index d8a36c6ad7c91046ff71bd1833ded3c0f2d989a6..b5f7063c0db60dd192ca1f882e492ff16a7477f1 100644 (file)
@@ -346,8 +346,11 @@ get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat)
                return -EFAULT;
        switch (_NSIG_WORDS) {
        case 4: set->sig[3] = v.sig[6] | (((long)v.sig[7]) << 32 );
+               /* fall through */
        case 3: set->sig[2] = v.sig[4] | (((long)v.sig[5]) << 32 );
+               /* fall through */
        case 2: set->sig[1] = v.sig[2] | (((long)v.sig[3]) << 32 );
+               /* fall through */
        case 1: set->sig[0] = v.sig[0] | (((long)v.sig[1]) << 32 );
        }
 #else
This page took 0.057175 seconds and 4 git commands to generate.