From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 629FBA046B for ; Fri, 28 Jun 2019 14:43:56 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0D3DA3798; Fri, 28 Jun 2019 14:43:55 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 915C134F0 for ; Fri, 28 Jun 2019 14:43:52 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Jun 2019 05:43:51 -0700 X-IronPort-AV: E=Sophos;i="5.63,427,1557212400"; d="scan'208";a="153361640" Received: from vyashin-mobl.ger.corp.intel.com (HELO bricha3-MOBL.ger.corp.intel.com) ([10.252.21.39]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Jun 2019 05:43:50 -0700 Date: Fri, 28 Jun 2019 13:43:46 +0100 From: Bruce Richardson To: "Burakov, Anatoly" Cc: dev@dpdk.org, thomas@monjalon.net, jerinj@marvell.com Message-ID: <20190628124346.GB347@bricha3-MOBL.ger.corp.intel.com> References: <20190530212525.40370-1-bruce.richardson@intel.com> <20190627104055.8244-1-bruce.richardson@intel.com> <20190627104055.8244-2-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.11.4 (2019-03-13) Subject: Re: [dpdk-dev] [PATCH v3 1/8] raw/ioat: add initial support for ioat rawdev driver X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Thu, Jun 27, 2019 at 12:55:12PM +0100, Burakov, Anatoly wrote: > On 27-Jun-19 11:40 AM, Bruce Richardson wrote: > > Add stubs for ioat rawdev driver support in DPDK, specifically: > > > > * makefile and meson build hooks > > * initial public header file > > * rawdev main C file, with probe and release functions > > * release note update announcing the driver > > * initial documentation for the new section in the rawdev doc > > * unit test stubs for device unit tests > > > > Signed-off-by: Bruce Richardson > > > > --- > > > > > NXP DPAA2 QDMA > > M: Nipun Gupta > > F: drivers/raw/dpaa2_qdma/ > > @@ -1078,7 +1083,6 @@ M: Nipun Gupta > > F: drivers/raw/dpaa2_cmdif/ > > F: doc/guides/rawdevs/dpaa2_cmdif.rst > > - > > Packet processing > > Unnecessary whitespace change :) > Thanks, good catch. > > ----------------- > > diff --git a/app/test/test_rawdev.c b/app/test/test_rawdev.c > > index 043a38a13..88549fb61 100644 > > --- a/app/test/test_rawdev.c > > +++ b/app/test/test_rawdev.c > > @@ -25,3 +25,11 @@ test_rawdev_selftest_skeleton(void) > > } > > > > > diff --git a/doc/guides/rel_notes/release_19_08.rst b/doc/guides/rel_notes/release_19_08.rst > > index 3da266705..720c13f8b 100644 > > --- a/doc/guides/rel_notes/release_19_08.rst > > +++ b/doc/guides/rel_notes/release_19_08.rst > > @@ -1,6 +1,8 @@ > > .. SPDX-License-Identifier: BSD-3-Clause > > Copyright 2019 The DPDK contributors > > +.. include:: > > + > > Is this accidental? This doesn't look related to this patch. > No, it's not accidental. It's the sphinx / rst include which allows the use of the actual symbols for (c) (R) etc. I make use of those symbols in the official product names in the following documentation. [It's a useful include that I think should always be put in our docs.]