From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by dpdk.org (Postfix) with ESMTP id ED2E2106B for ; Tue, 7 Jul 2015 16:45:05 +0200 (CEST) Received: by wiwl6 with SMTP id l6so317016172wiw.0 for ; Tue, 07 Jul 2015 07:45:05 -0700 (PDT) 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=T7CiMeTDHgvwJlpBIH6aTFtaasF+9GaMaRNesZnR/RY=; b=OKX0Gyfn9G6u9JjeIxmsvskZhbg4YPPfmApb92wynXYkFEDjztSjHRsANzCy9q+h5V KiMokP9fJQxOWppySeTXq5ertHaOCB5uj0uVryx43jXkp6gxxFTYTir/oCnfTVnBOurW BFAWV/x2pPqug11M6eLT0bBbTocwKXcZ1M3+v3KvfPZqspFDICMo0ZtBblyvztpLWUTq nYt/UDP6GWqKiX9GjVwJfJJzkva9lMmlQ23AN6uzM5M3yvojyzBHaoIUhe+m4i9dC5uV 8Nwi2250CCmPCEsFBH9Zh2njsMvUNtQysrp28MmhJGVXsxQUVxvMec4t+Hjy0WaEN5nI Y9zg== X-Gm-Message-State: ALoCoQnCLBetmArkLTXTdZr2Nxw61GE2mXwvhAF3GdN2NXEoNZfZqyxy8Gzx/cuHOu8aoVmDX4KV X-Received: by 10.180.205.139 with SMTP id lg11mr64802212wic.62.1436280305704; Tue, 07 Jul 2015 07:45:05 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id ma15sm52844900wic.20.2015.07.07.07.45.03 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 07 Jul 2015 07:45:04 -0700 (PDT) From: Thomas Monjalon To: "Zhang, Helin" Date: Tue, 07 Jul 2015 16:43:55 +0200 Message-ID: <6039952.UrD72MYjSg@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <9BB6961774997848B5B42BEC655768F8C51AC5@SHSMSX104.ccr.corp.intel.com> References: <1433214967-22247-1-git-send-email-helin.zhang@intel.com> <1434006240-7271-1-git-send-email-helin.zhang@intel.com> <9BB6961774997848B5B42BEC655768F8C51AC5@SHSMSX104.ccr.corp.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/7] support i40e QinQ stripping and insertion 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: Tue, 07 Jul 2015 14:45:06 -0000 > > As i40e hardware can be reconfigured to support QinQ stripping and insertion, > > this patch set is to enable that together with using the reserved 16 bits in > > 'struct rte_mbuf' for the second vlan tag. Corresponding command is added > > in testpmd for testing. > > Note that no need to rework vPMD, as nothings used in it changed. > > > > v2 changes: > > * Added more commit logs of which commit it fix for. > > * Fixed a typo. > > * Kept the original RX/TX offload flags as they were, added new > > flags after with new bit masks, for ABI compatibility. > > * Supported double vlan stripping/insertion in examples/ipv4_multicast. > > > > v3 changes: > > * update documentation (Testpmd Application User Guide). > > > > Helin Zhang (7): > > ixgbe: remove a discarded source line > > mbuf: use the reserved 16 bits for double vlan > > i40e: support double vlan stripping and insertion > > i40evf: add supported offload capability flags > > app/testpmd: add test cases for qinq stripping and insertion > > examples/ipv4_multicast: support double vlan stripping and insertion > > doc: update testpmd command > > Acked-by: Jingjing Wu Applied, thanks