From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 52A7F1094 for ; Thu, 6 Jul 2017 17:25:39 +0200 (CEST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga104.jf.intel.com with ESMTP; 06 Jul 2017 08:25:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,317,1496127600"; d="scan'208";a="121712985" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by orsmga005.jf.intel.com with ESMTP; 06 Jul 2017 08:25:37 -0700 Received: from irsmsx104.ger.corp.intel.com ([169.254.5.26]) by irsmsx110.ger.corp.intel.com ([169.254.15.126]) with mapi id 14.03.0319.002; Thu, 6 Jul 2017 16:25:36 +0100 From: "Mcnamara, John" To: "Nicolau, Radu" , "dev@dpdk.org" CC: "thomas@monjalon.net" , "Nicolau, Radu" Thread-Topic: [dpdk-dev] [PATCH v2] doc: release notes 17.08, API change description Thread-Index: AQHS9jrzAbjVH2ZK002eiEpl7HSNdKJG6zMA Date: Thu, 6 Jul 2017 15:25:36 +0000 Message-ID: References: <1499333001-10736-1-git-send-email-radu.nicolau@intel.com> <1499333341-10875-1-git-send-email-radu.nicolau@intel.com> In-Reply-To: <1499333341-10875-1-git-send-email-radu.nicolau@intel.com> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_PUBLIC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNTRlZTJlMzctZmQ5Ni00ZTE2LTgwZDEtMmY0ZTNkYmJlY2M3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX1BVQkxJQyJ9XX1dfSwiU3ViamVjdExhYmVscyI6W10sIlRNQ1ZlcnNpb24iOiIxNi41LjkuMyIsIlRydXN0ZWRMYWJlbEhhc2giOiJrdER0NnRuUGhMQWwyTWE0R3k5UnRLem5POTRXdE0xM0g2MHpBVnFoOXh3PSJ9 dlp-product: dlpe-windows dlp-version: 10.0.102.7 dlp-reaction: no-action 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] doc: release notes 17.08, API change description 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: Thu, 06 Jul 2017 15:25:39 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Radu Nicolau > Sent: Thursday, July 6, 2017 10:29 AM > To: dev@dpdk.org > Cc: thomas@monjalon.net; Nicolau, Radu > Subject: [dpdk-dev] [PATCH v2] doc: release notes 17.08, API change > description >=20 > Added API change description - moved bypass functions from the rte_ether > library to ixgbe PMD >=20 > Signed-off-by: Radu Nicolau > --- >=20 > v2: Fixed style errors >=20 > doc/guides/rel_notes/release_17_08.rst | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) >=20 > diff --git a/doc/guides/rel_notes/release_17_08.rst > b/doc/guides/rel_notes/release_17_08.rst > index 842f46f..7c891b4 100644 > --- a/doc/guides/rel_notes/release_17_08.rst > +++ b/doc/guides/rel_notes/release_17_08.rst > @@ -144,6 +144,31 @@ API Changes > Also, make sure to start the actual text at the margin. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 > +* **Moved bypass functions from the rte_ether library to ixgbe PMD** > + > + * The following rte_ether library APIs were removed: > + > + * ``rte_eth_dev_bypass_event_show`` > + * ``rte_eth_dev_bypass_event_store`` > + * ``rte_eth_dev_bypass_init`` > + * ``rte_eth_dev_bypass_state_set`` > + * ``rte_eth_dev_bypass_state_show`` > + * ``rte_eth_dev_bypass_ver_show`` > + * ``rte_eth_dev_bypass_wd_reset`` > + * ``rte_eth_dev_bypass_wd_timeout_show`` > + * ``rte_eth_dev_wd_timeout_store`` > + > + * The following ixgbe PMD APIs were added: The above line is indented slightly more than the previous "The following" line. This causes the second list to be rendered in Html as a sub-list of the first list. Which I'd guess isn't the intended behavior? John