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=-5.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=no 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 BEBFCC433F5 for ; Tue, 21 Sep 2021 08:20:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9E86861175 for ; Tue, 21 Sep 2021 08:20:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231205AbhIUIVj (ORCPT ); Tue, 21 Sep 2021 04:21:39 -0400 Received: from verein.lst.de ([213.95.11.211]:55477 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230421AbhIUIVi (ORCPT ); Tue, 21 Sep 2021 04:21:38 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 9386F67373; Tue, 21 Sep 2021 10:20:07 +0200 (CEST) Date: Tue, 21 Sep 2021 10:20:07 +0200 From: Christoph Hellwig To: Catalin Marinas Cc: Mike Rapoport , Christoph Hellwig , David Hildenbrand , Robin Murphy , Alex Bee , Will Deacon , Andrew Morton , Anshuman Khandual , Linux Kernel Mailing List , linux-mm@kvack.org, Linux ARM Subject: Re: [BUG 5.14] arm64/mm: dma memory mapping fails (in some cases) Message-ID: <20210921082007.GA29121@lst.de> References: <20210824173741.GC623@arm.com> <0908ce39-7e30-91fa-68ef-11620f9596ae@arm.com> <60a11eba-2910-3b5f-ef96-97d4556c1596@redhat.com> <20210825102044.GA3420@arm.com> <20210918051843.GA16104@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17 (2007-11-01) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 20, 2021 at 11:57:58AM +0100, Catalin Marinas wrote: > > As this WARN_ON(pfn_valid()) is only present in dma_map_resource() it's > > probably safe to drop it entirely. > > I agree, we should drop it. IIUC dma_map_resource() does not create any > kernel mapping to cause problems with attribute aliasing. You'd need a > prior devm_ioremap_resource() if you want access to that range from the > CPU side. For arm64 at least, the latter ends up with a > pfn_is_map_memory() check. It doesn't create any new mappings. The only real issue is that it does the wrong thing for RAM in a way that might not be noticed on simple (x86/PC) platforms.