From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 5B30B1B25B for ; Mon, 2 Oct 2017 17:09:08 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Oct 2017 08:09:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,469,1500966000"; d="scan'208";a="1177800524" Received: from silpixa00389036.ir.intel.com (HELO silpixa00389036.ger.corp.intel.com) ([10.237.223.231]) by orsmga001.jf.intel.com with ESMTP; 02 Oct 2017 08:09:06 -0700 From: Kirill Rybalchenko To: dev@dpdk.org Cc: kirill.rybalchenko@intel.com, andrey.chilikin@intel.com, beilei.xing@intel.com, jingjing.wu@intel.com Date: Mon, 2 Oct 2017 16:08:57 +0100 Message-Id: <1506956942-59123-1-git-send-email-kirill.rybalchenko@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1505917983-119112-1-git-send-email-kirill.rybalchenko@intel.com> References: <1505917983-119112-1-git-send-email-kirill.rybalchenko@intel.com> Subject: [dpdk-dev] [PATCH v4 0/5] net/i40e: implement dynamic mapping of flow types to pctypes 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: Mon, 02 Oct 2017 15:09:09 -0000 Implement dynamic mapping of software flow types to hardware pctypes. This allows to map new flow types to pctypes without changing API of the driver. v2: Remove unnecessary check for new flow types. Re-arrange patchset to avoid compillation errors. Remove unnecessary usage of statically defined flow types and pctypes. v3: Remove unnecessary bit operations in I40E_PFQF_HENA and I40E_VFQF_HENA registers. Add new definition in enum i40e_filter_pctype for for invalid pctype. Fixed bugs in i40e_pctype_to_flowtype and i40e_flowtype_to_pctype functions. Function rte_pmd_i40e_flow_type_mapping_get returns now full mapping table. testpmd: changed command syntax from 'pctype mapping...' to 'port config pctype mapping...' and 'show port pctype mapping' Various small modifications in code style after reviewing. v4: Change prototypes of some static functions. Move declaration of automatic variables to beginning of function. Move declaration of I40E_FILTER_PCTYPE_INVALID to i40e_ethdev.h Fix some typos in source filea and documentation. Kirill Rybalchenko (5): net/i40e: remove unnecessary bit operations net/i40e: implement dynamic mapping of sw flow types to hw pctypes net/i40e: add new functions to manipulate with pctype mapping table app/testpmd: add new commands to manipulate with pctype mapping ethdev: remove unnecessary check for new flow type app/test-pmd/cmdline.c | 336 ++++++++++++++++++++++++- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 46 ++++ drivers/net/i40e/i40e_ethdev.c | 363 ++++++++-------------------- drivers/net/i40e/i40e_ethdev.h | 22 +- drivers/net/i40e/i40e_ethdev_vf.c | 36 +-- drivers/net/i40e/i40e_fdir.c | 54 ++--- drivers/net/i40e/i40e_flow.c | 5 +- drivers/net/i40e/i40e_rxtx.c | 57 +++++ drivers/net/i40e/i40e_rxtx.h | 1 + drivers/net/i40e/rte_pmd_i40e.c | 90 +++++++ drivers/net/i40e/rte_pmd_i40e.h | 55 +++++ drivers/net/i40e/rte_pmd_i40e_version.map | 3 + lib/librte_ether/rte_ethdev.c | 8 - 13 files changed, 737 insertions(+), 339 deletions(-) -- 2.5.5