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 6A0D24CA5 for ; Wed, 17 Oct 2018 14:04:14 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@mellanox.com) with ESMTPS (AES256-SHA encrypted); 17 Oct 2018 14:09:11 +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 w9HC4DLs004767; Wed, 17 Oct 2018 15:04:13 +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: Wed, 17 Oct 2018 15:03:46 +0300 Message-Id: <1539777829-64412-1-git-send-email-dekelp@mellanox.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1539254998-8555-1-git-send-email-dekelp@mellanox.com> References: <1539254998-8555-1-git-send-email-dekelp@mellanox.com> Subject: [dpdk-dev] [PATCH v5 0/3] 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: Wed, 17 Oct 2018 12:04:15 -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 --- 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 (3): ethdev: support metadata as flow rule criteria app/testpmd: support metadata as flow rule item app/testpmd: add Tx metadata debug commands app/test-pmd/cmdline.c | 114 ++++++++++++++++++++++++++-- app/test-pmd/cmdline_flow.c | 25 ++++++ 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 | 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 | 68 +++++++++++------ 13 files changed, 261 insertions(+), 29 deletions(-) -- 1.8.3.1