From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4098AC41620 for ; Wed, 20 Jan 2021 11:51:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1C3822313A for ; Wed, 20 Jan 2021 11:51:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1733082AbhATLkK (ORCPT ); Wed, 20 Jan 2021 06:40:10 -0500 Received: from mail.kernel.org ([198.145.29.99]:55298 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388432AbhATK5U (ORCPT ); Wed, 20 Jan 2021 05:57:20 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id A6F3221744; Wed, 20 Jan 2021 10:56:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1611140200; bh=OYFRAwd3gT7bEDrOZi95CsYSNSXoqeY8zn/QOuX0+ng=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=h8e1lPmam/lRJr1NeMyGYEIakzHeGw+EeWPTLAV2EY8d/cojh9tGaidx5BdFwEvcw WoR/TEypySJskOAtm4U1qx6xqwkce5iUxjOrEfNgvPjA0MI+naftEyNHB0LpsSnEfE aS7fSHuLWH6k4RrDGl93MEhITDG8chuPu5jCIi5Q= Date: Wed, 20 Jan 2021 11:56:37 +0100 From: Greg KH To: Will Deacon Cc: stable@vger.kernel.org, linux-kernel@vger.kernel.org, Russell King , Arnd Bergmann , Nathan Chancellor , Nick Desaulniers , Linus Torvalds , Theodore Ts'o , Florian Weimer , Peter Zijlstra , Catalin Marinas Subject: Re: [STABLE BACKPORT 4.19.y and 5.14.y] compiler.h: Raise minimum version of GCC to 5.1 for arm64 Message-ID: References: <20210118135700.17447-1-will@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210118135700.17447-1-will@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jan 18, 2021 at 01:57:00PM +0000, Will Deacon wrote: > commit dca5244d2f5b94f1809f0c02a549edf41ccd5493 upstream. > > GCC versions >= 4.9 and < 5.1 have been shown to emit memory references > beyond the stack pointer, resulting in memory corruption if an interrupt > is taken after the stack pointer has been adjusted but before the > reference has been executed. This leads to subtle, infrequent data > corruption such as the EXT4 problems reported by Russell King at the > link below. > > Life is too short for buggy compilers, so raise the minimum GCC version > required by arm64 to 5.1. > > Reported-by: Russell King > Suggested-by: Arnd Bergmann > Signed-off-by: Will Deacon > Tested-by: Nathan Chancellor > Reviewed-by: Nick Desaulniers > Reviewed-by: Nathan Chancellor > Acked-by: Linus Torvalds > Cc: # 4.19.y and 5.4.y only All now queued up, thanks! greg k-h