From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id CB1C458E8 for ; Thu, 12 Feb 2015 01:45:54 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP; 11 Feb 2015 16:45:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,562,1418112000"; d="scan'208";a="684515631" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga002.jf.intel.com with ESMTP; 11 Feb 2015 16:45:52 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t1C0jps8003502 for ; Thu, 12 Feb 2015 08:45:51 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id t1C0jlsM018031 for ; Thu, 12 Feb 2015 08:45:49 +0800 Received: (from jijiangl@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t1C0jlv2018027 for dev@dpdk.org; Thu, 12 Feb 2015 08:45:47 +0800 From: Jijiang Liu To: dev@dpdk.org Date: Thu, 12 Feb 2015 08:45:43 +0800 Message-Id: <1423701947-17996-1-git-send-email-jijiang.liu@intel.com> X-Mailer: git-send-email 1.7.12.2 Subject: [dpdk-dev] [PATCH v2 0/4] Support NVGRE on i40e X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2015 00:45:55 -0000 The patch set supports NVGRE on i40e. It includes: - Support RX filters for NVGRE packet. It uses MAC and VLAN to point to a queue. The filter types supported are listed below: 1. Inner MAC and Inner VLAN ID 2. Inner MAC address, inner VLAN ID and tenant ID. 3. Inner MAC and tenant ID 4. Inner MAC address 5. Outer MAC address, tenant ID and inner MAC - Support TX checksum offload for NVGRE packet, which include outer L3(IP), inner L3(IP) and inner L4(UDP, TCP and SCTP) V2 changes: Do some rework based on Olivier's patch set [PATCH v2 00/20] enhance tx checksum offload API; the changes are listed below, 1. remove nvgre_hdr definition from rte_ether.h file. It is not used in csumonly.c file. 2. remove filter type iip that is not supported well in current firmware. 3. remove GRE packet flag from mbuf. Jijiang Liu (4): add ETHER_TYPE_TEB definition add nvgre filter test nvgre filter test nvgre tx checksum app/test-pmd/cmdline.c | 14 ++++++++------ app/test-pmd/csumonly.c | 32 +++++++++++++++++++------------- lib/librte_ether/rte_ether.h | 1 + lib/librte_pmd_i40e/i40e_ethdev.c | 3 +++ 4 files changed, 31 insertions(+), 19 deletions(-) -- 1.7.7.6