From patchwork Thu May 10 04:22:32 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qi Zhang X-Patchwork-Id: 39709 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9DD721B82E; Thu, 10 May 2018 06:22:14 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 96CDD1B804 for ; Thu, 10 May 2018 06:22:13 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 May 2018 21:22:12 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,383,1520924400"; d="scan'208";a="57405238" Received: from dpdk51.sh.intel.com ([10.67.110.184]) by orsmga002.jf.intel.com with ESMTP; 09 May 2018 21:22:11 -0700 From: Qi Zhang To: john.mcnamara@intel.com Cc: dev@dpdk.org, Qi Zhang Date: Thu, 10 May 2018 12:22:32 +0800 Message-Id: <20180510042232.13924-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.13.6 Subject: [dpdk-dev] [PATCH v2] doc: update release notes. 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" Add updates for runtime queue setup. Signed-off-by: Qi Zhang --- v2: - fix typo. doc/guides/rel_notes/release_18_05.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/guides/rel_notes/release_18_05.rst b/doc/guides/rel_notes/release_18_05.rst index 718734852..589649121 100644 --- a/doc/guides/rel_notes/release_18_05.rst +++ b/doc/guides/rel_notes/release_18_05.rst @@ -183,7 +183,6 @@ New Features stats/xstats on shared memory from secondary process, and also pdump packets on those virtual devices. - API Changes ----------- @@ -322,6 +321,12 @@ API Changes * ``rte_flow_create()`` API count action now requires the ``struct rte_flow_action_count``. * ``rte_flow_query()`` API parameter changed from action type to action structure. +* ethdev: runtime queue setup: + * ``rte_eth_rx_queue_setup`` and ``rte_eth_rx_queue_setup`` can be called after + ``rte_eth_dev_start`` if device support runtime queue setup. Device driver can + expose this capability through ``rte_eth_dev_info_get``. A Rx or Tx queue be + setup at runtime need to be started explicitly by ``rte_eth_dev_rx_queue_start`` + or ``rte_eth_dev_tx_queue_start``. ABI Changes -----------