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 283FBA0520; Thu, 2 Jul 2020 14:54:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 52EAF1D9C0; Thu, 2 Jul 2020 14:54:17 +0200 (CEST) Received: from git-send-mailer.rdmz.labs.mlnx (unknown [37.142.13.130]) by dpdk.org (Postfix) with ESMTP id CF82F1D9BF for ; Thu, 2 Jul 2020 14:54:15 +0200 (CEST) From: Bing Zhao To: orika@mellanox.com, john.mcnamara@intel.com, marko.kovacevic@intel.com, thomas@monjalon.net, ferruh.yigit@intel.com, arybchenko@solarflare.com, olivier.matz@6wind.com Cc: dev@dpdk.org, wenzhuo.lu@intel.com, beilei.xing@intel.com, bernard.iremonger@intel.com Date: Thu, 2 Jul 2020 20:53:40 +0800 Message-Id: <1593694422-299952-1-git-send-email-bingz@mellanox.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1593672361-285288-1-git-send-email-bingz@mellanox.com> References: <1593672361-285288-1-git-send-email-bingz@mellanox.com> Subject: [dpdk-dev] [PATCH v3 0/2] rte_flow: introduce eCPRI item for rte_flow 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" This patch set contains two commits. 1. header definition of the ethdev API 2. testpmd support for the eCPRI flow item Bing Zhao (2): rte_flow: add eCPRI key fields to flow API app/testpmd: add eCPRI in flow creation patterns app/test-pmd/cmdline_flow.c | 143 ++++++++++++++++++++++++++++++++ doc/guides/prog_guide/rte_flow.rst | 8 ++ lib/librte_ethdev/rte_flow.c | 1 + lib/librte_ethdev/rte_flow.h | 31 +++++++ lib/librte_net/Makefile | 1 + lib/librte_net/meson.build | 3 +- lib/librte_net/rte_ecpri.h | 163 +++++++++++++++++++++++++++++++++++++ lib/librte_net/rte_ether.h | 1 + 8 files changed, 350 insertions(+), 1 deletion(-) create mode 100644 lib/librte_net/rte_ecpri.h -- 2.5.5