From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id D27EE8025 for ; Mon, 27 Oct 2014 15:25:42 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 27 Oct 2014 07:34:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,796,1406617200"; d="scan'208";a="626246955" Received: from pgsmsx103.gar.corp.intel.com ([10.221.44.82]) by orsmga002.jf.intel.com with ESMTP; 27 Oct 2014 07:34:23 -0700 Received: from pgsmsx106.gar.corp.intel.com (10.221.44.98) by PGSMSX103.gar.corp.intel.com (10.221.44.82) with Microsoft SMTP Server (TLS) id 14.3.195.1; Mon, 27 Oct 2014 22:34:06 +0800 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by pgsmsx106.gar.corp.intel.com (10.221.44.98) with Microsoft SMTP Server (TLS) id 14.3.195.1; Mon, 27 Oct 2014 22:34:06 +0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.202]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.13]) with mapi id 14.03.0195.001; Mon, 27 Oct 2014 22:34:05 +0800 From: "Liu, Jijiang" To: Thomas Monjalon Thread-Topic: [dpdk-dev] [PATCH v8 00/10] Support VxLAN on Fortville Thread-Index: AQHP8Yuzvxbl2gI300qoTlGC0mpG05xCtemAgAC5oYCAAJMRIA== Date: Mon, 27 Oct 2014 14:34:05 +0000 Message-ID: <1ED644BD7E0A5F4091CF203DAFB8E4CC01D83857@SHSMSX101.ccr.corp.intel.com> References: <1414376006-31402-1-git-send-email-jijiang.liu@intel.com> <2858055.qKaWYEhIlQ@xps13> In-Reply-To: <2858055.qKaWYEhIlQ@xps13> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH v8 00/10] Support VxLAN on Fortville 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: Mon, 27 Oct 2014 14:25:43 -0000 > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > Sent: Monday, October 27, 2014 9:46 PM > To: Liu, Jijiang > Cc: dev@dpdk.org; Zhang, Helin > Subject: Re: [dpdk-dev] [PATCH v8 00/10] Support VxLAN on Fortville >=20 > 2014-10-27 02:41, Zhang, Helin: > > > The patch set supports VxLAN on Fortville based on latest rte_mbuf st= ructure. > > > > > > It includes: > > > - Support VxLAN packet identification by configuring UDP tunneling p= ort. > > > - Support VxLAN packet filters. 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 VxLAN TX checksum offload, which include outer L3(IP), > > > inner L3(IP) and inner L4(UDP,TCP and SCTP) > > > > > > Change notes: > > > > > > v8) * Fix the issue of redundant "PKT_RX" and the comma missing in > > > the pkt_rx_flag_names[] in the rxonly.c file. > > > > > > Jijiang Liu (10): > > > change rte_mbuf structures > > > add data structures of UDP tunneling > > > add VxLAN packet identification API in librte_ether > > > support VxLAN packet identification in i40e > > > test VxLAN packet identification in testpmd. > > > add data structures of tunneling filter in rte_eth_ctrl.h > > > implement the API of VxLAN packet filter in i40e > > > test VxLAN packet filter > > > support VxLAN Tx checksum offload in i40e > > > test VxLAN Tx checksum offload > > > > Acked-by: Helin Zhang >=20 > Applied >=20 > I fixed logs which had \n despite recent log rework. > I think there is also a wording error: you are writing VxLAN with x lower= case but > standard is writing it all uppercase: VXLAN. Do you agree? Virtual eXtensible Local Area Network (VXLAN) Agree. > Thanks > -- > Thomas