From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 93A741B1FE for ; Fri, 29 Sep 2017 11:27:25 +0200 (CEST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Sep 2017 02:27:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,452,1500966000"; d="scan'208";a="133510261" Received: from dpdk4.bj.intel.com ([172.16.182.85]) by orsmga004.jf.intel.com with ESMTP; 29 Sep 2017 02:27:23 -0700 From: Wei Zhao To: dev@dpdk.org Date: Fri, 29 Sep 2017 17:16:22 +0800 Message-Id: <1506676584-41030-1-git-send-email-wei.zhao1@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1506672718-39160-1-git-send-email-wei.zhao1@intel.com> References: <1506672718-39160-1-git-send-email-wei.zhao1@intel.com> Subject: [dpdk-dev] [PATCH v7 0/2] net/i40e: API to configure queue regions for RSS 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: , X-List-Received-Date: Fri, 29 Sep 2017 09:27:26 -0000 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. root (2): net/i40e: queue region set and flush app/testpmd: add API for configuration of queue region app/test-pmd/cmdline.c | 389 +++++++++++++++++++++ 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 | 520 ++++++++++++++++++++++++++++ drivers/net/i40e/rte_pmd_i40e.h | 60 ++++ drivers/net/i40e/rte_pmd_i40e_version.map | 1 + 7 files changed, 1071 insertions(+), 6 deletions(-) -- 2.7.4