From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A8E74A04A4; Wed, 3 Jun 2020 16:20:25 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D0F111D447; Wed, 3 Jun 2020 16:20:24 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 03C351D446 for ; Wed, 3 Jun 2020 16:20:22 +0200 (CEST) IronPort-SDR: AyFTGW6H5/ijBHcCGgmFBNAtW8MVc8D4UDFZGwenbS1WX2Es7Ml9hn5KADjpkVTvUK8ELKEJkw EJyZ0NQkrQcQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Jun 2020 07:20:21 -0700 IronPort-SDR: 9bu8iKBSC3Hb1s9wWEN4iamAC3snxb/1E4C11SD2qXcjMj4Cq7bIqTNehhDMs2ZGTOIbe6CXxB zO/riepIkfEg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,467,1583222400"; d="scan'208";a="416572730" Received: from sivswdev08.ir.intel.com (HELO localhost.localdomain) ([10.237.217.47]) by orsmga004.jf.intel.com with ESMTP; 03 Jun 2020 07:20:19 -0700 From: Bernard Iremonger To: dev@dpdk.org, beilei.xing@intel.com, qi.z.zhang@intel.com, declan.doherty@intel.com, orika@mellanox.com Cc: Bernard Iremonger Date: Wed, 3 Jun 2020 15:20:01 +0100 Message-Id: <1591194009-4086-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH 0/8] add flow action map 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" Add map action to rte_flow API to map a Packet Classification type (pctype) to a flowtype for the i40e PMD. This feature requires changes to be made to the rte_flow code in librte_ethdev, testpmd and the i40e PMD. Bernard Iremonger (8): librte_ethdev: add new flow types and action librte_ethdev: add map filter type librte_ethdev: add map action app/testpmd: parse map actions net/i40e: add map filter net/i40e: add map functions net/i40e: parse map pattern and action doc: release note app/test-pmd/cmdline_flow.c | 85 ++++++++++++ doc/guides/prog_guide/rte_flow.rst | 55 ++++++++ doc/guides/rel_notes/release_20_08.rst | 18 +++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 27 ++++ drivers/net/i40e/i40e_ethdev.c | 56 ++++++++ drivers/net/i40e/i40e_ethdev.h | 24 ++++ drivers/net/i40e/i40e_flow.c | 196 ++++++++++++++++++++++++++++ lib/librte_ethdev/rte_eth_ctrl.h | 1 + lib/librte_ethdev/rte_flow.c | 14 ++ lib/librte_ethdev/rte_flow.h | 78 +++++++++++ 10 files changed, 554 insertions(+) -- 2.7.4