From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: ARC-Seal: i=1; a=rsa-sha256; t=1516301013; cv=none; d=google.com; s=arc-20160816; b=U0FqbhLhWt+mD6/iv5aXuezh1QZI8x+O88V3Lf63M4/AohjDUCFWY5XgiyBA4xHXse 15SxZUrt8T23oVXIjUjE2GXFQa6jGt0IgDHO86TYp1BJo78oj9bLkpyk14yI3UivwzZA Qk3HjcJwdGW/tMTOdz3n8ODidExfcmt8yAylpKvuF8Nt7aBw0uKLgX8wh1+DlEDK/0so rkIs18e9yJxms4jXeCazy5UzvNCBApT466+i0sINDBbmaBwFMOrsV8GkAqTRi6VqKgXY QkqyPABBgXwbCfdOgCiaeui6R9n+xEMk69HtNLZi2k55IYZ2MS19tDbySKgw3hVMRvaa xKgg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=content-disposition:mime-version:message-id:subject:cc:to:from:date :dkim-signature:arc-authentication-results; bh=n06anbWckmraR71fp7z2eoWtqumYLsCQPrOuNF+mUcE=; b=AnLvGGK1K/dtSOTNcJ1lgpVTFG4oOuFwwPmGgJyyvBkyZBtIFw2ZinkZzvM6y8CiLW bLI6N7Pl8TRIpJdexfMmJKruCrQBR/bJZ5nxQjo16tM+AnMANnqHDedGMwe+xEiqWBOY NbGNg8k7wHtcRp3AYfDjo7Gh9GOcLAJSSBQAhax/LC0nyBx1EWIkkU/B5mQQ4fXAtVXZ Q/aeHZ6UQ3d44CdqrRQIKyLEiO2oGHanJOuCr4/DsZ9bEzAQNsXGmW89N7Pn79KmsgOp rUZ8GIJEqmIzLtK16kX7V3BFxX+mv59zvqf+9s9bF/oYC02ZNGE5Mfg3q0r46IfvdYID PpkQ== ARC-Authentication-Results: i=1; mx.google.com; dkim=pass header.i=@chromium.org header.s=google header.b=i2ej1KrM; spf=pass (google.com: domain of keescook@chromium.org designates 209.85.220.65 as permitted sender) smtp.mailfrom=keescook@chromium.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=chromium.org Authentication-Results: mx.google.com; dkim=pass header.i=@chromium.org header.s=google header.b=i2ej1KrM; spf=pass (google.com: domain of keescook@chromium.org designates 209.85.220.65 as permitted sender) smtp.mailfrom=keescook@chromium.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=chromium.org X-Google-Smtp-Source: ACJfBovHW60r4KWnKLoB+0U8kluyy9XI7nj+JURE+uINU/mLqERigSjxISrIUj8X8PlMe+tCxW3CIQ== Date: Thu, 18 Jan 2018 10:43:30 -0800 From: Kees Cook To: Thomas Gleixner Cc: David Woodhouse , Andy Lutomirski , x86@kernel.org, Greg Kroah-Hartman , linux-kernel@vger.kernel.org Subject: [PATCH] x86/cpu: Drop needless fall-through comment Message-ID: <20180118184330.GA29597@beast> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-getmail-retrieved-from-mailbox: INBOX X-GMAIL-THRID: =?utf-8?q?1589956851593193242?= X-GMAIL-MSGID: =?utf-8?q?1589956851593193242?= X-Mailing-List: linux-kernel@vger.kernel.org List-ID: This fall-through comment is both misspelled and unneeded (it appears between case statements, not between operations before a case statement). Signed-off-by: Kees Cook --- arch/x86/kernel/cpu/bugs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/x86/kernel/cpu/bugs.c b/arch/x86/kernel/cpu/bugs.c index 390b3dc3d438..19056f7f1fa7 100644 --- a/arch/x86/kernel/cpu/bugs.c +++ b/arch/x86/kernel/cpu/bugs.c @@ -191,7 +191,6 @@ static void __init spectre_v2_select_mitigation(void) return; case SPECTRE_V2_CMD_FORCE: - /* FALLTRHU */ case SPECTRE_V2_CMD_AUTO: goto retpoline_auto; -- 2.7.4 -- Kees Cook Pixel Security