Received: by 10.213.65.68 with SMTP id h4csp253778imn; Mon, 12 Mar 2018 12:43:18 -0700 (PDT) X-Google-Smtp-Source: AG47ELthHcN46xj8F5xyxvvCeFB96i6RQ6bFySrcjxrtNFCig/1jrc4ds0CqJv0qOXL/u3NUWcBI X-Received: by 2002:a17:902:7f0c:: with SMTP id d12-v6mr9111980plm.350.1520883798672; Mon, 12 Mar 2018 12:43:18 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1520883798; cv=none; d=google.com; s=arc-20160816; b=e/PjTtr4MIWhS8t63jDhZMFBixxKYsxbu7Ucpt4AoqOFNwWPO+Xo7r1dU7paCh9sYG H0Yh6xcAulEVmayMySTVgIYd7wXj0Zq6jZfk9RXNsZfxkWEzVBYz57JUsdZmSYU//NcG 9gTSNMB1gpS3d3rLwXEkNCA1IjE9WWb44+9Hk1xQnaDNQq78jfVtSfLeOXwKXiihIbgv Ji3o7Zc+juwqP3GD+Ha1qTPmxsBdM7Q4TIDVCEweq1FLPohDZcLX4NTi8SWrocxbluim TH8W4CODi02lVh/7oZ1VUNtBvIoj2j+mrS85oGh6Qa7VEda4CPDmffG42/Ao9fB5cvyT uRLA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :organization:references:in-reply-to:message-id:subject:cc:to:from :date:arc-authentication-results; bh=BNo+RPrS3FzM2PW5C1M3MXvXo9XQmvt5314A0z1Zmfg=; b=LYbBzOKplPKfwD9VQvVsAl8sYhuxlD/cTIMgVxUU8fq5V1kbaexk1DzBAprXuW40Bu VyelU4kF5pRmZyp6GSPdlzYzQRoxssp313Jpu+mAwgTDz3y47yjb0Wg80/C1HcwInp8U 4P2VsFANnM19bbMczZlyVEfX5QnGnhTznZhq2U90DpNifqok6nDNgxawcctCWNMw8rnQ gczU8KX35vNPgnqNyOEZe9w53+9us4rX16TaplsbGC2XiAYkHsFxU5KRiGCoyVHo7V0O 5kwfcEb+BZaFFQtT+ZtgAucDQZ+gwAvWWL6ohJ4HLTwthfSUZmnqcMGNaVSo6GaaymH2 R1uQ== 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 m24si1534895pgn.21.2018.03.12.12.43.02; Mon, 12 Mar 2018 12:43:18 -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 S1751473AbeCLTlS (ORCPT + 99 others); Mon, 12 Mar 2018 15:41:18 -0400 Received: from ms.lwn.net ([45.79.88.28]:50220 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751282AbeCLTlR (ORCPT ); Mon, 12 Mar 2018 15:41:17 -0400 Received: from lwn.net (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id B91BC536; Mon, 12 Mar 2018 19:41:15 +0000 (UTC) Date: Mon, 12 Mar 2018 13:41:14 -0600 From: Jonathan Corbet To: Logan Gunthorpe Cc: linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, linux-nvme@lists.infradead.org, linux-rdma@vger.kernel.org, linux-nvdimm@lists.01.org, linux-block@vger.kernel.org, Stephen Bates , Christoph Hellwig , Jens Axboe , Keith Busch , Sagi Grimberg , Bjorn Helgaas , Jason Gunthorpe , Max Gurtovoy , Dan Williams , =?UTF-8?B?SsOpcsO0bWU=?= Glisse , Benjamin Herrenschmidt , Alex Williamson Subject: Re: [PATCH v3 05/11] PCI/P2PDMA: Add P2P DMA driver writer's documentation Message-ID: <20180312134114.1e4b12f8@lwn.net> In-Reply-To: <20180312193525.2855-6-logang@deltatee.com> References: <20180312193525.2855-1-logang@deltatee.com> <20180312193525.2855-6-logang@deltatee.com> Organization: LWN.net MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 12 Mar 2018 13:35:19 -0600 Logan Gunthorpe wrote: > Add a restructured text file describing how to write drivers > with support for P2P DMA transactions. The document describes > how to use the APIs that were added in the previous few > commits. > > Also adds an index for the PCI documentation tree even though this > is the only PCI document that has ben converted to restructured text > at this time. This all seems good, but...could we consider moving this documentation to driver-api/PCI as it's converted to RST? That would keep it together with similar materials and bring a bit more coherence to Documentation/ as a whole. Thanks, jon