Received: by 2002:a25:868d:0:0:0:0:0 with SMTP id z13csp2668485ybk; Tue, 12 May 2020 05:20:33 -0700 (PDT) X-Google-Smtp-Source: APiQypKTlNKel7csNtqcJxtWI/SN0tc8KhMJ/YPzJq5Ao6Kg0pqTiGqDKkcv3GuifagPazuAbSqU X-Received: by 2002:a05:6402:1587:: with SMTP id c7mr16725417edv.61.1589286033702; Tue, 12 May 2020 05:20:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1589286033; cv=none; d=google.com; s=arc-20160816; b=OsP5GdpJtzMkhnoOW/zeUTZKkyZ+VSXlgb4cxSa5YjbjDnZY06vTnehGgTSBFO3gUV 6BD0zT08bIZlVKzBW5xVRDrvvFu+n7/ZbWDoEqAyTNrrF5j2AnD7BvIZdSiljmUbYAUc 9leNCDxYnHQjpiv6w4bh1RVxIX3V9Ad4v7/OURBFgORYI5OU7M+dXSQPbbiuN9XvCPKl zHav55CidvHJU6ZY2GeSxQyA1HYql8kNS7u7bC/DRAKAX4Eqhbb82piq1IVQDFXqG7h+ Rhb/2FRS2o1sSDmnhOhOpKKHbZRD/jrQn141mfjullpa/oO7l+B/DjJrt5/tHlONbtCA nOIg== 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=U96y2xouNRS6wcWV5fLsCLm1YykpI5nlnv3V0+hqVQs=; b=MAvawxgrBcJ1LqrX1ofh4ehOoKSnkJJU7Y1yW34tAsWpf/mLjDaLADdrsa8byB3NYe 4/4QtP35csJMsuY//oVbdBBSAsGRMZaxr8Xc4Qc9F8C6D3MGv2Q9URAnNnZAYQwpFMi0 XDJhJ3JBcaEdht5Kjp90rswcm6LcAj3fVR31CEo+I4QssWhZar+7pQSGKDpUPldUEmvF TU7BMESS7H2Sl8iU4Vew/gnG7wL7PnFUzF3krsdpM8s3csmtuSmAdIP+p5bX1pPVJHfV 9/u2FwlnK+GW2ketYbkhCYpP2WbPSGiv0a45v5q+i/ZLV6AJIpAw53piwpXNu2lML+LC izZg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id l18si7791514edf.202.2020.05.12.05.20.09; Tue, 12 May 2020 05:20:33 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729659AbgELMS2 (ORCPT + 99 others); Tue, 12 May 2020 08:18:28 -0400 Received: from verein.lst.de ([213.95.11.211]:40890 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729437AbgELMSM (ORCPT ); Tue, 12 May 2020 08:18:12 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 8F23F68BEB; Tue, 12 May 2020 14:18:08 +0200 (CEST) Date: Tue, 12 May 2020 14:18:08 +0200 From: Christoph Hellwig To: Marek Szyprowski Cc: dri-devel@lists.freedesktop.org, iommu@lists.linux-foundation.org, linaro-mm-sig@lists.linaro.org, linux-kernel@vger.kernel.org, Christoph Hellwig , Robin Murphy , Bartlomiej Zolnierkiewicz , linux-arm-kernel@lists.infradead.org, David Airlie , Daniel Vetter Subject: Re: [PATCH v4 01/38] dma-mapping: add generic helpers for mapping sgtable objects Message-ID: <20200512121808.GA20393@lst.de> References: <20200512085710.14688-1-m.szyprowski@samsung.com> <20200512090058.14910-1-m.szyprowski@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200512090058.14910-1-m.szyprowski@samsung.com> 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, May 12, 2020 at 11:00:21AM +0200, Marek Szyprowski wrote: > struct sg_table is a common structure used for describing a memory > buffer. It consists of a scatterlist with memory pages and DMA addresses > (sgl entry), as well as the number of scatterlist entries: CPU pages > (orig_nents entry) and DMA mapped pages (nents entry). > > It turned out that it was a common mistake to misuse nents and orig_nents > entries, calling DMA-mapping functions with a wrong number of entries or > ignoring the number of mapped entries returned by the dma_map_sg > function. > > To avoid such issues, lets introduce a common wrappers operating directly > on the struct sg_table objects, which take care of the proper use of > the nents and orig_nents entries. > > Signed-off-by: Marek Szyprowski > --- > For more information, see '[PATCH v4 00/38] DRM: fix struct sg_table nents > vs. orig_nents misuse' thread: > https://lore.kernel.org/dri-devel/20200512085710.14688-1-m.szyprowski@samsung.com/T/ > --- > include/linux/dma-mapping.h | 79 +++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 79 insertions(+) > > diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h > index b43116a..88f01cc 100644 > --- a/include/linux/dma-mapping.h > +++ b/include/linux/dma-mapping.h > @@ -609,6 +609,85 @@ static inline void dma_sync_single_range_for_device(struct device *dev, > return dma_sync_single_for_device(dev, addr + offset, size, dir); > } > > +/** > + * dma_map_sgtable - Map the given buffer for the DMA operations > + * @dev: The device to perform a DMA operation > + * @sgt: The sg_table object describing the buffer > + * @dir: DMA direction > + * @attrs: Optional DMA attributes for the map operation > + * > + * Maps a buffer described by a scatterlist stored in the given sg_table > + * object for the @dir DMA operation by the @dev device. After success > + * the ownership for the buffer is transferred to the DMA domain. One has > + * to call dma_sync_sgtable_for_cpu() or dma_unmap_sgtable() to move the > + * ownership of the buffer back to the CPU domain before touching the > + * buffer by the CPU. > + * Returns 0 on success or -EINVAL on error during mapping the buffer. > + */ > +static inline int dma_map_sgtable(struct device *dev, struct sg_table *sgt, > + enum dma_data_direction dir, unsigned long attrs) > +{ > + int n = dma_map_sg_attrs(dev, sgt->sgl, sgt->orig_nents, dir, attrs); > + > + if (n > 0) { > + sgt->nents = n; > + return 0; > + } > + return -EINVAL; Nit: code tend to be a tad easier to read if the the exceptional condition is inside the branch block, so: if (n <= 0) return -EINVAL; sgt->nents = n; return 0; Otherwise this looks good to me: Reviewed-by: Christoph Hellwig