From patchwork Tue Oct 27 12:51:51 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ananyev, Konstantin" X-Patchwork-Id: 8069 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 3EB478DA9; Tue, 27 Oct 2015 13:52:28 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id F29498D9B for ; Tue, 27 Oct 2015 13:52:22 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP; 27 Oct 2015 05:52:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,205,1444719600"; d="scan'208";a="836532052" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 27 Oct 2015 05:52:20 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t9RCqJcN028748; Tue, 27 Oct 2015 12:52:19 GMT Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t9RCqJXr020615; Tue, 27 Oct 2015 12:52:19 GMT Received: (from kananye1@localhost) by sivswdev02.ir.intel.com with id t9RCqJrZ020611; Tue, 27 Oct 2015 12:52:19 GMT From: Konstantin Ananyev To: dev@dpdk.org Date: Tue, 27 Oct 2015 12:51:51 +0000 Message-Id: <1445950311-20497-10-git-send-email-konstantin.ananyev@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1445950311-20497-1-git-send-email-konstantin.ananyev@intel.com> References: <1445950311-20497-1-git-send-email-konstantin.ananyev@intel.com> In-Reply-To: <1445515592-25920-2-git-send-email-konstantin.ananyev@intel.com> References: <1445515592-25920-2-git-send-email-konstantin.ananyev@intel.com> Subject: [dpdk-dev] [PATCHv7 9/9] doc: release notes update for queue_info_get() and (rx|tx)_desc_limit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Konstantin Ananyev --- doc/guides/rel_notes/release_2_2.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/guides/rel_notes/release_2_2.rst b/doc/guides/rel_notes/release_2_2.rst index de6916e..aff6306 100644 --- a/doc/guides/rel_notes/release_2_2.rst +++ b/doc/guides/rel_notes/release_2_2.rst @@ -11,6 +11,11 @@ New Features * **Added vhost-user multiple queue support.** +* **Add new API into rte_ethdev to retrieve RX/TX queue information.** + + * Add the ability for the upper layer to query RX/TX queue information. + * Add into rte_eth_dev_info new fields to represent information about + RX/TX descriptors min/max/alig nnumbers per queue for the device. Resolved Issues --------------- @@ -98,6 +103,11 @@ API Changes * The devargs union field virtual is renamed to virt for C++ compatibility. +* New functions rte_eth_rx_queue_info_get() and rte_eth_tx_queue_info_get() + are introduced. + +* New fields rx_desc_lim and tx_desc_lim are added into rte_eth_dev_info + structure. ABI Changes ----------- @@ -108,6 +118,9 @@ ABI Changes * The ethdev flow director entries for SCTP were changed. It was already done in 2.1 for CONFIG_RTE_NEXT_ABI. +* New fields rx_desc_lim and tx_desc_lim were added into rte_eth_dev_info + structure. + * The mbuf structure was changed to support unified packet type. It was already done in 2.1 for CONFIG_RTE_NEXT_ABI.