From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 694C8AA90 for ; Tue, 17 Apr 2018 15:49:05 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Apr 2018 06:49:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,463,1517904000"; d="scan'208";a="221104817" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by fmsmga005.fm.intel.com with ESMTP; 17 Apr 2018 06:49:02 -0700 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.61]) by IRSMSX106.ger.corp.intel.com ([169.254.8.37]) with mapi id 14.03.0319.002; Tue, 17 Apr 2018 14:49:02 +0100 From: "Kovacevic, Marko" To: Stephen Hemminger , "dev@dpdk.org" CC: Stephen Hemminger Thread-Topic: [dpdk-dev] [PATCH v2 3/4] net/netvsc: add documentation Thread-Index: AQHT1doxa84l9Z+J7kWKWxKGBW8+0qQE9T0g Date: Tue, 17 Apr 2018 13:49:01 +0000 Message-ID: <6DC05C7C5F25994B81B3F2F214251F66360470@IRSMSX103.ger.corp.intel.com> References: <20180416232439.8018-1-sthemmin@microsoft.com> <20180416232439.8018-4-sthemmin@microsoft.com> In-Reply-To: <20180416232439.8018-4-sthemmin@microsoft.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiY2E2NmIxOWMtMWE3ZC00NjA5LWJmNGQtN2UyNThhNmJjOTE0IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6IjM5ditHSkhERVhWNk9PRmUrbmNUUFdpcXF4ekh3cmVRRjRsa0ZxNWF5Rmc9In0= x-ctpclassification: CTP_NT x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 3/4] net/netvsc: add documentation 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: , X-List-Received-Date: Tue, 17 Apr 2018 13:49:06 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Stephen Hemminger > Sent: Tuesday, April 17, 2018 12:25 AM > To: dev@dpdk.org > Cc: Stephen Hemminger > Subject: [dpdk-dev] [PATCH v2 3/4] net/netvsc: add documentation >=20 > Matching documentation for new netvsc device. >=20 > Signed-off-by: Stephen Hemminger > --- > doc/guides/nics/index.rst | 1 + > doc/guides/nics/netvsc.rst | 73 ++++++++++++++++++++++++++ > doc/guides/rel_notes/release_18_05.rst | 6 +++ > 3 files changed, 80 insertions(+) > create mode 100644 doc/guides/nics/netvsc.rst >=20 > diff --git a/doc/guides/nics/index.rst b/doc/guides/nics/index.rst index > ea9110c81159..97727731375a 100644 > --- a/doc/guides/nics/index.rst > +++ b/doc/guides/nics/index.rst > @@ -23,6 +23,7 @@ Network Interface Controller Drivers > ena > enic > fm10k > + hyperv > i40e > igb > ixgbe I get the following errors while trying to compile the changes made. /dpdk/doc/guides/nics/index.rst:7: WARNING: toctree contains reference to n= onexisting document u'nics/hyperv' /dpdk/doc/guides/nics/netvsc.rst:34: WARNING: Unexpected indentation. /dpdk/doc/guides/nics/netvsc.rst: WARNING: document isn't included in any t= octree /dpdk/doc/guides/rel_notes/release_18_05.rst:120: WARNING: unknown document= : ../nics/netvsce Not sure if you meant to put netvsc in the index file instead of hyperv. Marko K.