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=-20.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,INCLUDES_PULL_REQUEST, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS, 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 06F42C433E6 for ; Fri, 22 Jan 2021 19:23:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CF81423A7A for ; Fri, 22 Jan 2021 19:22:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729934AbhAVTW2 (ORCPT ); Fri, 22 Jan 2021 14:22:28 -0500 Received: from mail.kernel.org ([198.145.29.99]:45474 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728944AbhAVTIE (ORCPT ); Fri, 22 Jan 2021 14:08:04 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 7DF0423AC1; Fri, 22 Jan 2021 19:07:23 +0000 (UTC) Date: Fri, 22 Jan 2021 19:07:21 +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.11-rc5 Message-ID: <20210122190719.GA29705@gaia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, Please pull the arm64 fixes below. Thanks. The following changes since commit 3a57a643a851dbb1c4a1819394ca009e3bfa4813: arm64: selftests: Fix spelling of 'Mismatch' (2021-01-15 10:05:27 +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 75bd4bff300b3c5252d4a0e7a959569c62d1dbae: arm64: kprobes: Fix Uexpected kernel BRK exception at EL1 (2021-01-22 16:05:29 +0000) ---------------------------------------------------------------- arm64 fixes: - Correctly mask out bits 63:60 in a kernel tag check fault address (specified as unknown by the architecture). Previously they were just zeroed but for kernel pointers they need to be all ones. - Fix a panic (unexpected kernel BRK exception) caused by kprobes being reentered due to an interrupt. ---------------------------------------------------------------- Andrey Konovalov (1): kasan, arm64: fix pointer tags in KASAN reports Qais Yousef (1): arm64: kprobes: Fix Uexpected kernel BRK exception at EL1 arch/arm64/kernel/probes/kprobes.c | 4 ++-- arch/arm64/mm/fault.c | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) -- Catalin