From mboxrd@z Thu Jan 1 00:00:00 1970 From: Beilei Xing Subject: [PATCH v2 0/3] add support for MPLS tunnel filter Date: Thu, 23 Mar 2017 18:57:46 +0800 Message-ID: <1490266669-122137-1-git-send-email-beilei.xing@intel.com> References: <1488534236-29904-1-git-send-email-beilei.xing@intel.com> Cc: helin.zhang@intel.com, dev@dpdk.org To: jingjing.wu@intel.com Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 8D85B695C for ; Thu, 23 Mar 2017 11:58:54 +0100 (CET) In-Reply-To: <1488534236-29904-1-git-send-email-beilei.xing@intel.com> 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 patchset adds support for MPLSoGRE and MPLSoUDP tunnel filters. I40e NICs can't recongnize MPLS tunnel packets by default, so need to load a profile to FW first, then MPLS tunnel packets can be recongnized with packet type 61 and 63. It depends on pipeline personalization profile support and changes of tunnel filter function. Beilei Xing (3): app/testpmd: add support for MPLS and GRE items net/i40e: add MPLS parsing function net/i40e: enable tunnel filter for MPLS app/test-pmd/cmdline_flow.c | 46 +++++ app/test-pmd/config.c | 2 + doc/guides/prog_guide/rte_flow.rst | 20 +- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 8 + drivers/net/i40e/i40e_ethdev.c | 45 +++- drivers/net/i40e/i40e_ethdev.h | 12 ++ drivers/net/i40e/i40e_flow.c | 307 ++++++++++++++++++++++++++++ lib/librte_ether/rte_flow.h | 45 ++++ 8 files changed, 478 insertions(+), 7 deletions(-) -- 2.5.5