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 A2FA1C433DB for ; Wed, 3 Feb 2021 18:45:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6516A64F8C for ; Wed, 3 Feb 2021 18:45:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233106AbhBCSpE (ORCPT ); Wed, 3 Feb 2021 13:45:04 -0500 Received: from mail.kernel.org ([198.145.29.99]:36146 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233087AbhBCSoy (ORCPT ); Wed, 3 Feb 2021 13:44:54 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id B41B264DA1; Wed, 3 Feb 2021 18:44:13 +0000 (UTC) Date: Wed, 3 Feb 2021 18:44:11 +0000 From: Catalin Marinas To: Linus Torvalds Cc: Will Deacon , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Vincenzo Frascino Subject: [GIT PULL] arm64 fixes for 5.11-rc7 Message-ID: <20210203184408.GA5226@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 a1df829ead5877d4a1061e976a50e2e665a16f24: ACPI/IORT: Do not blindly trust DMA masks from firmware (2021-01-27 12:26:24 +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 22cd5edb2d9c6d68b6ac0fc9584104d88710fa57: arm64: Use simpler arithmetics for the linear map macros (2021-02-02 17:45:09 +0000) ---------------------------------------------------------------- Fix the arm64 linear map range detection for tagged addresses and replace the bitwise operations with subtract (virt_addr_valid(), __is_lm_address(), __lm_to_phys()). ---------------------------------------------------------------- Catalin Marinas (2): arm64: Do not pass tagged addresses to __is_lm_address() arm64: Use simpler arithmetics for the linear map macros arch/arm64/include/asm/memory.h | 6 +++--- arch/arm64/mm/physaddr.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) -- Catalin