From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id B7C067D0D for ; Thu, 24 Aug 2017 12:20:52 +0200 (CEST) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Aug 2017 03:20:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,421,1498546800"; d="scan'208";a="144048843" Received: from silpixa00389036.ir.intel.com (HELO silpixa00389036.ger.corp.intel.com) ([10.237.223.231]) by fmsmga006.fm.intel.com with ESMTP; 24 Aug 2017 03:20:49 -0700 From: Kirill Rybalchenko To: dev@dpdk.org Cc: kirill.rybalchenko@intel.com, andrey.chilikin@intel.com, beilei.xing@intel.com Date: Thu, 24 Aug 2017 11:20:39 +0100 Message-Id: <1503570044-104133-1-git-send-email-kirill.rybalchenko@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dpdk-dev] [PATCH 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: Thu, 24 Aug 2017 10:20:53 -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. Kirill Rybalchenko (5): app/testpmd: add new commands to manipulate with pctype mapping net/i40e: add function to initialize pctype mapping table net/i40e: add new functions to manipulate with pctype mapping table net/i40e: change list of parameters for functions mapping flow type to pctype and back net/i40e: implement dynamic mapping of sw flow types to hw pctypes app/test-pmd/cmdline.c | 263 ++++++++++++++++++++++++++++++++ drivers/net/i40e/i40e_ethdev.c | 313 +++++++++----------------------------- drivers/net/i40e/i40e_ethdev.h | 16 +- drivers/net/i40e/i40e_ethdev_vf.c | 36 ++--- drivers/net/i40e/i40e_fdir.c | 10 +- drivers/net/i40e/i40e_flow.c | 2 +- drivers/net/i40e/i40e_rxtx.c | 57 +++++++ drivers/net/i40e/i40e_rxtx.h | 1 + drivers/net/i40e/rte_pmd_i40e.c | 98 ++++++++++++ drivers/net/i40e/rte_pmd_i40e.h | 60 ++++++++ 10 files changed, 583 insertions(+), 273 deletions(-) -- 2.5.5