From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 446DE223 for ; Sat, 25 Nov 2017 04:15:23 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Nov 2017 19:15:22 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,450,1505804400"; d="scan'208";a="1248340425" Received: from dpdk15.sh.intel.com ([10.67.111.77]) by fmsmga002.fm.intel.com with ESMTP; 24 Nov 2017 19:15:21 -0800 From: Jiayu Hu To: dev@dpdk.org Cc: jianfeng.tan@intel.com, konstantin.ananyev@intel.com, Jiayu Hu Date: Sat, 25 Nov 2017 11:17:38 +0800 Message-Id: <1511579860-37020-1-git-send-email-jiayu.hu@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH 0/2] Support VxLAN GRO 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: Sat, 25 Nov 2017 03:15:24 -0000 VxLAN is one of the most widely used tunneled protocols. Providing GRO support for VxLAN-encapsulated packets can benefit many per-packet based applications, like OVS. This patchset is to support VxLAN GRO. The first patch cleans up current TCP/IPv4 GRO codes for the sake of supporting tunneled GRO. The second patch supports GRO on the VxLAN packets which have an outer IPv4 header and inner TCP/IPv4 headers. Jiayu Hu (2): gro: TCP/IPV4 GRO codes cleanup gro: support VxLAN GRO lib/librte_gro/Makefile | 1 + lib/librte_gro/gro_tcp4.c | 294 +++++++----------------- lib/librte_gro/gro_tcp4.h | 236 ++++++++++++++------ lib/librte_gro/gro_vxlan_tcp4.c | 481 ++++++++++++++++++++++++++++++++++++++++ lib/librte_gro/gro_vxlan_tcp4.h | 178 +++++++++++++++ lib/librte_gro/rte_gro.c | 166 ++++++++++---- lib/librte_gro/rte_gro.h | 3 + 7 files changed, 1032 insertions(+), 327 deletions(-) create mode 100644 lib/librte_gro/gro_vxlan_tcp4.c create mode 100644 lib/librte_gro/gro_vxlan_tcp4.h -- 2.7.4