Received: by 2002:a25:f815:0:0:0:0:0 with SMTP id u21csp3659624ybd; Tue, 25 Jun 2019 06:26:58 -0700 (PDT) X-Google-Smtp-Source: APXvYqwNMaNjI3E4rvuSZl4PLhJPkeZ4E2uh/zZbHmnFqxxFCyLS4/ylYo9dEgGpaiXm1RGRnWXU X-Received: by 2002:a63:a48:: with SMTP id z8mr38855691pgk.91.1561469218479; Tue, 25 Jun 2019 06:26:58 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1561469218; cv=none; d=google.com; s=arc-20160816; b=XnXW+kp/25gJqSe2+ckeDs1R+51nhtAAKoiDgzvqoXrtfmKNod5yPFgL0l5Uk2Q3uh DvjnboszcQqsQ2L0XGNBsn3CobPxy/yip7aVuLUo6KSFjnrjeqP0i9VJlN2jlXBddvV4 1dzwJFDEwhUriHYqEHQWHf3EBydQ7leMyJfDdJSYF9Zi1uDx1DHX9F9dz1f2hkvMqcJW v2ZCImRi+5w7gzuW4NRhJLPYA4xHA0qUvD0DFfr2o3yFgM08FgNrdZ3o+ImUiAPzBo/Q s0K68a6/uOtGkIdMMELjiCF4/IZt46jT+KJSuJh8SftnyvSZVvWqOPPeBAIPqLKm9dZR V0cA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=PTdOgROIerT1pOd4M3mTG5xlf22zHjAyoNfY9xW72Y8=; b=MozmzIs5xnu4a6aiAF7gpuxqCsKcsGrf0JF5//4Y+F37ekTOxRNgGC2ZbuqDj3ga+K pFw0e2xuq7zMQPXasA3h2/IPTERaGjqO5OtphCr80u1SSvCVnlugVrPASAV9VzFBwvqm YSG+yfGbfG39Kja0EaUzn33EFO5Cxb7ET0opVBOC24InEUKfZRquS6Ax02L5dPn9IK71 a+Y3QE76m1MKi/IIEE2CA+ydQMnqbvD6zf0qfD7sz41RmYLIftVWFfghsR6Qi4SZCJO2 eujUkPPTYm6/hpS8sJurobSWrietP5Wh/2ziNJeNzv8RmmNEthhuQi5a9W/L/YFwcJrN +V0Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v11si2821925pjn.44.2019.06.25.06.26.42; Tue, 25 Jun 2019 06:26:58 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731188AbfFYM2l (ORCPT + 99 others); Tue, 25 Jun 2019 08:28:41 -0400 Received: from verein.lst.de ([213.95.11.211]:34433 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726653AbfFYM2k (ORCPT ); Tue, 25 Jun 2019 08:28:40 -0400 Received: by newverein.lst.de (Postfix, from userid 2407) id 02DC568B05; Tue, 25 Jun 2019 14:28:09 +0200 (CEST) Date: Tue, 25 Jun 2019 14:28:08 +0200 From: Christoph Hellwig To: Helge Deller Cc: Christoph Hellwig , Vineet Gupta , Jonas Bonn , Stefan Kristiansson , Stafford Horne , Vladimir Murzin , linux-snps-arc@lists.infradead.org, linux-arm-kernel@lists.infradead.org, openrisc@lists.librecores.org, linux-parisc@vger.kernel.org, iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 5/7] dma-direct: handle DMA_ATTR_NON_CONSISTENT in common code Message-ID: <20190625122808.GB4421@lst.de> References: <20190614144431.21760-1-hch@lst.de> <20190614144431.21760-6-hch@lst.de> <3eb32e0b-5aa4-fe1e-e581-038750e11cef@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3eb32e0b-5aa4-fe1e-e581-038750e11cef@gmx.de> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jun 25, 2019 at 02:23:45PM +0200, Helge Deller wrote: > On 14.06.19 16:44, Christoph Hellwig wrote: > > Only call into arch_dma_alloc if we require an uncached mapping, > > and remove the parisc code manually doing normal cached > > DMA_ATTR_NON_CONSISTENT allocations. > > > > Signed-off-by: Christoph Hellwig > > Acked-by: Helge Deller # parisc > > Boot-tested 32-bit kernel on PCX-L and PCX-W2 machines (although > the patches don't cleanly apply any longer against git head). The series was against the dma-mapping tree, which might have diverged a bit already. Thanks for testing!