From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 8583E4C8C for ; Sun, 21 Oct 2018 16:23:32 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@mellanox.com) with ESMTPS (AES256-SHA encrypted); 21 Oct 2018 16:28:35 +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 w9LENVhb013776; Sun, 21 Oct 2018 17:23:31 +0300 From: Dekel Peled To: wenzhuo.lu@intel.com, jingjing.wu@intel.com, bernard.iremonger@intel.com, olivier.matz@6wind.com, adrien.mazarguil@6wind.com, thomas@monjalon.net, ferruh.yigit@intel.com, arybchenko@solarflare.com Cc: shahafs@mellanox.com, dev@dpdk.org, orika@mellanox.com Date: Sun, 21 Oct 2018 17:22:46 +0300 Message-Id: <1540131768-32824-1-git-send-email-dekelp@mellanox.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1539777829-64412-1-git-send-email-dekelp@mellanox.com> References: <1539777829-64412-1-git-send-email-dekelp@mellanox.com> Subject: [dpdk-dev] [PATCH v6 0/2] support metadata 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: , X-List-Received-Date: Sun, 21 Oct 2018 14:23:32 -0000 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 --- v6: Apply code review comments: * Squash testpmd patches into single patch. * Update documentation. * testpmd support exact metadata value only ('is' option). v5: Apply code review comments: * Update mbuf comments for clarity . * Update feature description in programmer guide. v4: Apply code review comments: * Change location of metadata item in mbuf. * Update debug commands. v3: * Add link to RFC email. * Add cover letter subject line. v2: * Fix some checkpatch coding style issues (wrongly sent). --- Dekel Peled (2): ethdev: support metadata as flow rule criteria app/testpmd: support metadata as flow rule item app/test-pmd/cmdline.c | 111 +++++++++++++++++++++++++++- app/test-pmd/cmdline_flow.c | 28 +++++++ app/test-pmd/testpmd.c | 5 ++ app/test-pmd/testpmd.h | 2 + app/test-pmd/txonly.c | 9 +++ doc/guides/prog_guide/rte_flow.rst | 21 ++++++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 21 +++++- 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 | 68 +++++++++++------ 13 files changed, 271 insertions(+), 27 deletions(-) -- 1.8.3.1