From patchwork Wed Jan 3 08:13:24 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Zhao1, Wei" X-Patchwork-Id: 32847 X-Patchwork-Delegate: helin.zhang@intel.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 256541B1A2; Wed, 3 Jan 2018 09:21:23 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id AE8EF1B173 for ; Wed, 3 Jan 2018 09:21:21 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Jan 2018 00:21:20 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,500,1508828400"; d="scan'208";a="8041099" Received: from dpdk2.bj.intel.com ([172.16.182.81]) by orsmga006.jf.intel.com with ESMTP; 03 Jan 2018 00:21:19 -0800 From: Wei Zhao To: dev@dpdk.org Cc: john.mcnamara@intel.com, Wei Zhao Date: Wed, 3 Jan 2018 16:13:24 +0800 Message-Id: <20180103081324.53616-1-wei.zhao1@intel.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20171221035200.22479-1-wei.zhao1@intel.com> References: <20171221035200.22479-1-wei.zhao1@intel.com> Subject: [dpdk-dev] [PATCH v2] doc: add queue region feature info to 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" This patch add inforation about i40e queue region realted to release notes, it has been missed before in v17.11 release notes. This feature has been implemented in v17.11. Signed-off-by: Wei Zhao --- v2: -change this information to v18.02 release notes. --- doc/guides/rel_notes/release_18_02.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/doc/guides/rel_notes/release_18_02.rst b/doc/guides/rel_notes/release_18_02.rst index 24b67bb..0e9f17b 100644 --- a/doc/guides/rel_notes/release_18_02.rst +++ b/doc/guides/rel_notes/release_18_02.rst @@ -41,6 +41,23 @@ New Features Also, make sure to start the actual text at the margin. ========================================================= +* **Added the i40e ethernet driver to support queue region feature.** + + This feature enable queue regions configuration for RSS in PF, + so that different traffic classes or different packet + classification types can be separated to different queues in + different queue regions. This feature has been implemented in v17.11. + +* **Added the testpmd app to support queue region configuration with CLI.** + + This patch add a API configuration of queue region in rss with command line. + It can parse the parameters of region index, queue number, + queue start index, user priority, traffic classes and so on. + According to commands from command line, it will call i40e + private API and start the process of set or flush queue region + configure. As this feature is specific for i40e, so private API + will be used. Aslo add a document for these new commands. + This feature has been implemented in v17.11. API Changes -----------