From patchwork Thu Jul 6 09:23:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Radu Nicolau X-Patchwork-Id: 26528 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 468442C13; Thu, 6 Jul 2017 11:26:52 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 0F5912C8 for ; Thu, 6 Jul 2017 11:26:50 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Jul 2017 02:26:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,316,1496127600"; d="scan'208";a="282819447" Received: from silpixa00383879.ir.intel.com (HELO silpixa00383879.ger.corp.intel.com) ([10.237.223.127]) by fmsmga004.fm.intel.com with ESMTP; 06 Jul 2017 02:26:47 -0700 From: Radu Nicolau To: dev@dpdk.org Cc: thomas@monjalon.net, radu.nicolau@intel.com Date: Thu, 6 Jul 2017 10:23:21 +0100 Message-Id: <1499333001-10736-1-git-send-email-radu.nicolau@intel.com> X-Mailer: git-send-email 2.7.5 Subject: [dpdk-dev] [PATCH] 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Added API change description - moved bypass functions from the rte_ether library to ixgbe PMD Signed-off-by: Radu Nicolau --- doc/guides/rel_notes/release_17_08.rst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/doc/guides/rel_notes/release_17_08.rst b/doc/guides/rel_notes/release_17_08.rst index 842f46f..6959720 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. ========================================================= +* **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: + + * ``rte_pmd_ixgbe_bypass_event_show`` + * ``rte_pmd_ixgbe_bypass_event_store`` + * ``rte_pmd_ixgbe_bypass_init`` + * ``rte_pmd_ixgbe_bypass_state_set`` + * ``rte_pmd_ixgbe_bypass_state_show`` + * ``rte_pmd_ixgbe_bypass_ver_show`` + * ``rte_pmd_ixgbe_bypass_wd_reset`` + * ``rte_pmd_ixgbe_bypass_wd_timeout_show`` + * ``rte_pmd_ixgbe_bypass_wd_timeout_store`` ABI Changes -----------