From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f169.google.com (mail-we0-f169.google.com [74.125.82.169]) by dpdk.org (Postfix) with ESMTP id BF21DADCD for ; Mon, 23 Feb 2015 16:42:53 +0100 (CET) Received: by wesw55 with SMTP id w55so19344686wes.4 for ; Mon, 23 Feb 2015 07:42:53 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=laQ2ELYnKtWo8aP1A8yt8nKczLXoWzzT2EYbvPIv2NM=; b=VpWfcXY/8KexyB8HGfrsEZHXpVjPmG3aFIeXgdVPmeXVUbHWZQxiSo3ogjIYt8HdIU nYzKUBFQHeeKHkr3WuVF5HwFq3vFrw8SW+VFW2o+cCUAH/Ws5e7j2o6cjobFlb5WmaqD PY89K/Emd5+Xhdh5xxti4GU/0q4Es6YGyJIAeh4Z7D6FJ5ZZX1PVBPiDkcDHDh6CdvUT 6VK/HDS/h51EpWKkefOGP6dvsMadbrqLh7e5cFj9sP3+Pt6Bjp0EWJ17K+vT3ffT3LVI vaMysdNdATwRwdMpoIvuwkHAr8HMr1YSbBYL7R2ISuAo0FYlHQlj5TCj3qhbT/AL6Viu /iVg== X-Gm-Message-State: ALoCoQmraEhd7CMMgjc3bAqNAD4US+Tf2lWWjU3Zks2ZJjitZbL/jVA/8Tch5g7Xevz4khhSjDcs X-Received: by 10.194.184.83 with SMTP id es19mr23073506wjc.93.1424706173591; Mon, 23 Feb 2015 07:42:53 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id fo17sm56082987wjc.19.2015.02.23.07.42.52 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 23 Feb 2015 07:42:52 -0800 (PST) From: Thomas Monjalon To: Declan Doherty , jijiang.liu@intel.com Date: Mon, 23 Feb 2015 16:42:22 +0100 Message-ID: <3118148.p0rTmXUYUq@xps13> Organization: 6WIND User-Agent: KMail/4.14.4 (Linux/3.18.4-1-ARCH; KDE/4.14.4; x86_64; ; ) In-Reply-To: <1424451707-12342-1-git-send-email-declan.doherty@intel.com> References: <1423701947-17996-1-git-send-email-jijiang.liu@intel.com> <1424451707-12342-1-git-send-email-declan.doherty@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v3 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: Mon, 23 Feb 2015 15:42:54 -0000 2015-02-20 17:01, Declan Doherty: > 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. > > V3 changes: > - Addresses Olivier's comment's for V2 of patchset > - Re-based against HEAD > > Jijiang Liu (4): > librte_ether:add an ETHER_TYPE_TEB macro > i40e:support RX tunnel filter for NVGRE packet > app/testpmd:test RX tunnel filter for NVGRE packet > app/testpmd:test NVGRE Tx checksum offload Applied, thanks