From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wenzhuo Lu Subject: [PATCH v2 0/6] Support VxLAN & NVGRE checksum off-load on X550 Date: Thu, 14 Jan 2016 09:38:30 +0800 Message-ID: <1452735516-4527-1-git-send-email-wenzhuo.lu@intel.com> References: <1452496044-17524-1-git-send-email-wenzhuo.lu@intel.com> To: dev@dpdk.org Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 9F44E8E5E for ; Thu, 14 Jan 2016 02:38:42 +0100 (CET) Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u0E1cdBt032117 for ; Thu, 14 Jan 2016 09:38:39 +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 u0E1caDi004562 for ; Thu, 14 Jan 2016 09:38:38 +0800 Received: (from wenzhuol@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u0E1caSp004558 for dev@dpdk.org; Thu, 14 Jan 2016 09:38:36 +0800 In-Reply-To: <1452496044-17524-1-git-send-email-wenzhuo.lu@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch set add the VxLAN & NVGRE checksum off-load support. Both RX and TX checksum off-load can be used for VxLAN & NVGRE. And the VxLAN port can be set, it's implemented in this patch set either. Wenzhuo Lu (6): lib/librte_ether: change function name of tunnel port config i40e: rename the tunnel port config functions ixgbe: support UDP tunnel port config ixgbe: support VxLAN & NVGRE RX checksum off-load ixgbe: support VxLAN & NVGRE TX checksum off-load doc: update release note for VxLAN & NVGRE checksum off-load support app/test-pmd/cmdline.c | 6 ++- doc/guides/rel_notes/release_2_3.rst | 8 +++ drivers/net/i40e/i40e_ethdev.c | 22 ++++---- drivers/net/ixgbe/ixgbe_ethdev.c | 95 ++++++++++++++++++++++++++++++++++ drivers/net/ixgbe/ixgbe_rxtx.c | 63 ++++++++++++++++++---- drivers/net/ixgbe/ixgbe_rxtx.h | 6 ++- examples/tep_termination/vxlan_setup.c | 2 +- lib/librte_ether/rte_ethdev.c | 45 ++++++++++++++++ lib/librte_ether/rte_ethdev.h | 18 +++++++ lib/librte_mbuf/rte_mbuf.c | 1 + lib/librte_mbuf/rte_mbuf.h | 3 ++ 11 files changed, 244 insertions(+), 25 deletions(-) -- 1.9.3