From patchwork Thu Sep 27 13:57:54 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dekel Peled X-Patchwork-Id: 45527 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3D9311B4E3; Thu, 27 Sep 2018 15:59:46 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 7621B1B4E2 for ; Thu, 27 Sep 2018 15:59:44 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@mellanox.com) with ESMTPS (AES256-SHA encrypted); 27 Sep 2018 16:04:15 +0200 Received: from mtl-vdi-280.wap.labs.mlnx. (mtl-vdi-280.wap.labs.mlnx [10.128.130.87]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id w8RDxe6m015805; Thu, 27 Sep 2018 16:59:40 +0300 From: Dekel Peled To: wenzhuo.lu@intel.com, jingjing.wu@intel.com, bernard.iremonger@intel.com, dev@dpdk.org, olivier.matz@6wind.com, adrien.mazarguil@6wind.com, thomas@monjalon.net, ferruh.yigit@intel.com, arybchenko@solarflare.com Cc: shahafs@mellanox.com, orika@mellanox.com Date: Thu, 27 Sep 2018 16:57:54 +0300 Message-Id: <1538056677-33846-1-git-send-email-dekelp@mellanox.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1537108670-11380-1-git-send-email-dekelp@mellanox.com> References: <1537108670-11380-1-git-send-email-dekelp@mellanox.com> Subject: [dpdk-dev] [PATCH v3 0/3] support meadata as flow rule criteria 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 series implements the match-metadata feature described in [1]. [1] "[RFC v2] ethdev: support metadata as flow rule criteria" http://mails.dpdk.org/archives/dev/2018-August/110194.html V3: * Add link to RFC email. * Add cover letter subject line. V2: * Fix some checkpatch coding style issues (wrongly sent). Dekel Peled (3): ethdev: support metadata as flow rule criteria app/testpmd: support metadata as flow rule criteria app/testpmd: add debug command Tx metadata set app/test-pmd/cmdline.c | 60 ++++++++++++++++++++++++++--- app/test-pmd/cmdline_flow.c | 25 ++++++++++++ app/test-pmd/config.c | 7 ++++ app/test-pmd/testpmd.c | 5 +++ app/test-pmd/testpmd.h | 4 ++ app/test-pmd/txonly.c | 9 +++++ doc/guides/prog_guide/rte_flow.rst | 21 ++++++++++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 13 ++++++- lib/librte_ethdev/rte_ethdev.c | 1 + lib/librte_ethdev/rte_ethdev.h | 5 +++ lib/librte_ethdev/rte_flow.c | 1 + lib/librte_ethdev/rte_flow.h | 24 ++++++++++++ lib/librte_mbuf/rte_mbuf.c | 2 + lib/librte_mbuf/rte_mbuf.h | 16 +++++++- 14 files changed, 184 insertions(+), 9 deletions(-)