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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 18BF6C433F5 for ; Wed, 9 Mar 2022 19:04:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237216AbiCITFZ (ORCPT ); Wed, 9 Mar 2022 14:05:25 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47852 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229514AbiCITFX (ORCPT ); Wed, 9 Mar 2022 14:05:23 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 82DB12180B for ; Wed, 9 Mar 2022 11:04:24 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 321E7B82365 for ; Wed, 9 Mar 2022 19:04:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 04029C340E8; Wed, 9 Mar 2022 19:04:20 +0000 (UTC) Date: Wed, 9 Mar 2022 19:04:17 +0000 From: Catalin Marinas To: Linus Torvalds Cc: Will Deacon , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] arm64 fixes for 5.17 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, Please pull the arm64 fixes below. I expect another pull request today or tomorrow with a small fix for building BHB with clang LTO enabled (some include order messing up defines). Thanks. The following changes since commit 4f6de676d94ee8ddfc2e7e7cd935fc7cb2feff3a: arm64: Correct wrong label in macro __init_el2_gicv3 (2022-02-14 18:37:07 +0000) 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 b859ebedd1e730bbda69142fca87af4e712649a1: arm64: kasan: fix include error in MTE functions (2022-03-09 15:27:21 +0000) ---------------------------------------------------------------- - Fix compilation of eBPF object files that indirectly include mte-kasan.h. - Fix test for execute-only permissions with EPAN (Enhanced Privileged Access Never, ARMv8.7 feature). ---------------------------------------------------------------- Catalin Marinas (1): arm64: Ensure execute-only permissions are not allowed without EPAN Paul Semel (1): arm64: kasan: fix include error in MTE functions arch/arm64/Kconfig | 3 --- arch/arm64/include/asm/mte-kasan.h | 1 + arch/arm64/include/asm/pgtable-prot.h | 4 ++-- arch/arm64/include/asm/pgtable.h | 11 ----------- arch/arm64/mm/mmap.c | 17 +++++++++++++++++ 5 files changed, 20 insertions(+), 16 deletions(-) -- Catalin