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=-16.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=ham 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 2E846C41604 for ; Tue, 6 Oct 2020 18:09:51 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 97E76206F7 for ; Tue, 6 Oct 2020 18:09:50 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="GvoqSQ9X" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 97E76206F7 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:MIME-Version:Message-ID:Subject:To:From:Date: Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender :Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=xxEKODeWcEai25Psl/67Cye5vGLQ7Jz4oE3FfbeC3xk=; b=GvoqSQ9XOsANMTwBk/as/DyHA/ gwlKRasiLHVrRivZ5cy01ySKYL8Jgs6b1zEZIWe0FP9ZcvXiMUuZbfwUxbaribjS8icBFjzReIqTY 7Qom5wozVeOEHnhoYA1+3NYFTARRhUssteNGJsSdCwWsDUBsrpTfpUsZEO6xDldvTO5C4FTWiOyKr tO54PrF3vJ1F5a/rMlKOGvcHF6IUJS+plMiuABwI9bgJfixyanX3uNlog7ELU8sORN+iERfI7TUtN 90HGqbBVnAM9UFdCLYKrmkrrVOpeWKcRIjsw5CYHSso0VZWTLJAhxI/TDkqRHwV/zLP/SXHdXOQhW /camBfBw==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kPrNz-0003IG-CL; Tue, 06 Oct 2020 18:08:27 +0000 Received: from mail.kernel.org ([198.145.29.99]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kPrNx-0003Hg-5R for linux-arm-kernel@lists.infradead.org; Tue, 06 Oct 2020 18:08:25 +0000 Received: from gaia (unknown [95.149.105.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id F3168206F7; Tue, 6 Oct 2020 18:08:22 +0000 (UTC) Date: Tue, 6 Oct 2020 19:08:20 +0100 From: Catalin Marinas To: Linus Torvalds Subject: [GIT PULL] arm64 fix for 5.9 Message-ID: <20201006180818.GA25842@gaia> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20201006_140825_290913_23CEF25B X-CRM114-Status: GOOD ( 12.87 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Will Deacon , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Linus, Please pull the arm64 fix below. Thanks. The following changes since commit a509a66a9d0d4f4e304d58fad38c078d0336c445: arm64: permit ACPI core to map kernel memory used for table overrides (2020-09-30 22:27:51 +0100) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux tags/arm64-fixes for you to fetch changes up to 39e4716caa598a07a98598b2e7cd03055ce25fb9: crypto: arm64: Use x16 with indirect branch to bti_c (2020-10-06 18:14:47 +0100) ---------------------------------------------------------------- Fix a kernel panic in the AES crypto code caused by a BR tail call not matching the target BTI instruction (when branch target identification is enabled). ---------------------------------------------------------------- Jeremy Linton (1): crypto: arm64: Use x16 with indirect branch to bti_c arch/arm64/crypto/aes-neonbs-core.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Catalin _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel