From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wei Zhao Subject: [PATCH v8 0/2] net/i40e: API to configure queue regions for RSS Date: Wed, 11 Oct 2017 16:55:31 +0800 Message-ID: <1507712133-31875-1-git-send-email-wei.zhao1@intel.com> References: <1506676584-41030-1-git-send-email-wei.zhao1@intel.com> To: dev@dpdk.org Return-path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id C069A2BF7 for ; Wed, 11 Oct 2017 11:06:39 +0200 (CEST) In-Reply-To: <1506676584-41030-1-git-send-email-wei.zhao1@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The patches mainly finish following functions: 1) Command line for input queue region configure parameters. 2) Set or flush queue region configutation. v2: -fix bug for packet into queue region code. -change code style for DPDK C programing. -change that "flowtype" name to " hw_flowtype " in struct rte_i40e_rss_region_conf v3: -fix patch check warning -fix a bug in cmdline.c v4: -fix bug for flowtype config. -add a new command for get all queue region configuration. -change function name to "rss" related. -add document info about queue region CLI. v5: -fix patchcheck warning. -add port id check. v6: -split this patch set into 2 patch. v7: -change some PMD_DRV_LOG log. v8: -change CLI command format. -change some functions name. root (2): net/i40e: queue region set and flush app/testpmd: add API for configuration of queue region app/test-pmd/cmdline.c | 424 ++++++++++++++++++++++++ app/test-pmd/config.c | 44 +++ app/test-pmd/testpmd.h | 3 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 41 +++ drivers/net/i40e/i40e_ethdev.c | 27 +- drivers/net/i40e/i40e_ethdev.h | 39 +++ drivers/net/i40e/rte_pmd_i40e.c | 494 ++++++++++++++++++++++++++++ drivers/net/i40e/rte_pmd_i40e.h | 91 +++++ drivers/net/i40e/rte_pmd_i40e_version.map | 2 +- 9 files changed, 1158 insertions(+), 7 deletions(-) -- 2.7.4