From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 500492BB3 for ; Thu, 3 Mar 2016 19:37:52 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga101.fm.intel.com with ESMTP; 03 Mar 2016 10:37:51 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,532,1449561600"; d="scan'208";a="926234145" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by orsmga002.jf.intel.com with ESMTP; 03 Mar 2016 10:37:50 -0800 Received: from irsmsx112.ger.corp.intel.com (10.108.20.5) by IRSMSX101.ger.corp.intel.com (163.33.3.153) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 3 Mar 2016 18:37:49 +0000 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.35]) by irsmsx112.ger.corp.intel.com ([169.254.1.234]) with mapi id 14.03.0248.002; Thu, 3 Mar 2016 18:37:49 +0000 From: "Ananyev, Konstantin" To: "Lu, Wenzhuo" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v6 0/5] Support VxLAN & NVGRE checksum off-load on X550 Thread-Index: AQHRdOs5sgRkfOVqH0iIlGlnTc46Up9IDWzg Date: Thu, 3 Mar 2016 18:37:48 +0000 Message-ID: <2601191342CEEE43887BDE71AB97725836B1603A@irsmsx105.ger.corp.intel.com> References: <1452496044-17524-1-git-send-email-wenzhuo.lu@intel.com> <1456968142-2418-1-git-send-email-wenzhuo.lu@intel.com> In-Reply-To: <1456968142-2418-1-git-send-email-wenzhuo.lu@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMWE3ZWRmNzUtMjgyMS00MDI2LWFiNTgtYjRkZjYyY2U2MGUxIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IllLNDRGUmtBRUE5MnZmQzl0XC92djNDbSs5QXBjODVBZ0FDWXoxMnZ1dG9vPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v6 0/5] Support VxLAN & NVGRE checksum off-load on X550 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, 03 Mar 2016 18:37:52 -0000 >=20 > 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. >=20 > v2: > - Update release note. >=20 > v3: > - Update RX/TX offload capability. > - Reuse PKT_RX_EIP_CKSUM_BAD but not add a new one. > - Correct the tunnel len for TX, and remove the useless out_l2_len. > - Don't set the tunnel type for TX, and remove the unused ol_flag_nvgre. >=20 > v4: > - Fix the issue that not setting the MAC length correctly. >=20 > v5: > - Change the behavior of VxLAN port add/del to make it align with i40e. >=20 > v6: > - Fix x86_64-native-linuxapp-gcc-shared compile error. >=20 > Wenzhuo Lu (5): > 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 >=20 > app/test-pmd/cmdline.c | 6 +- > doc/guides/rel_notes/release_16_04.rst | 9 +++ > drivers/net/i40e/i40e_ethdev.c | 22 +++--- > drivers/net/ixgbe/ixgbe_ethdev.c | 131 +++++++++++++++++++++++++++= ++++++ > drivers/net/ixgbe/ixgbe_rxtx.c | 67 ++++++++++++++--- > 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 | 19 +++++ > lib/librte_ether/rte_ether_version.map | 2 + > lib/librte_mbuf/rte_mbuf.c | 2 +- > lib/librte_mbuf/rte_mbuf.h | 2 +- > 12 files changed, 285 insertions(+), 28 deletions(-) >=20 > -- Acked-by: Konstantin Ananyev > 1.9.3