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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C45C5C433F5 for ; Tue, 2 Nov 2021 06:44:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9392160F58 for ; Tue, 2 Nov 2021 06:44:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229799AbhKBGqf (ORCPT ); Tue, 2 Nov 2021 02:46:35 -0400 Received: from verein.lst.de ([213.95.11.211]:54613 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229526AbhKBGqd (ORCPT ); Tue, 2 Nov 2021 02:46:33 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 85F8768AFE; Tue, 2 Nov 2021 07:43:56 +0100 (CET) Date: Tue, 2 Nov 2021 07:43:56 +0100 From: Christoph Hellwig To: Walter Wu Cc: Ard Biesheuvel , Christoph Hellwig , Marek Szyprowski , Robin Murphy , Matthias Brugger , Linux IOMMU , Linux Kernel Mailing List , Linux ARM , wsd_upstream , linux-mediatek@lists.infradead.org, Andrew Morton , Will Deacon Subject: Re: [PATCH] dma-direct: fix DMA_ATTR_NO_KERNEL_MAPPING Message-ID: <20211102064356.GB27749@lst.de> References: <20211101031558.7184-1-walter-zh.wu@mediatek.com> <76840b40fcf26a65467931a73f236982ad39989c.camel@mediatek.com> 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 Tue, Nov 02, 2021 at 11:21:16AM +0800, Walter Wu wrote: > Our platform is arch64. We need a dynamic allocated buffer from CMA is > not to read by CPU peculative execution, so we need to remove its > kernel mapping. If your CPU speculates into unused kernel direct mappings your have a worse problem than this, because all the dma coherent allocations for non-coherent devices still have a cachable direct mapping. Will mentioned he wanted to look into getting rid of that mapping now that the core dma code has the infrastucture for that, so adding him here.