From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 7C46EB62 for ; Fri, 11 Mar 2016 09:49:48 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP; 11 Mar 2016 00:49:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,319,1455004800"; d="scan'208";a="762225255" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga003.jf.intel.com with ESMTP; 11 Mar 2016 00:49:46 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u2B8nijP032168; Fri, 11 Mar 2016 16:49:44 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id u2B8nfRh020469; Fri, 11 Mar 2016 16:49:43 +0800 Received: (from hzhan75@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u2B8nfKI020465; Fri, 11 Mar 2016 16:49:41 +0800 From: Helin Zhang To: dev@dpdk.org Date: Fri, 11 Mar 2016 16:49:37 +0800 Message-Id: <1457686179-20435-1-git-send-email-helin.zhang@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1457627793-8491-1-git-send-email-helin.zhang@intel.com> References: <1457627793-8491-1-git-send-email-helin.zhang@intel.com> Subject: [dpdk-dev] [PATCH v4 0/2] i40e setting ether type of VLANs 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: Fri, 11 Mar 2016 08:49:48 -0000 It adds setting ether type of both single VLAN(inner VLAN) and outer VLAN for i40e. For ixgbe and e1000/igb, it supports setting single VLAN(inner VLAN) only, and can be extended in the future. The patch set was branched off rel_16_04 of repo dpdk-next-net, on below commit. commit 5721e6447b5c20208a32c919a509e89d78c3e68d Author: Robin Jarry Date: Thu Mar 3 15:27:40 2016 +0100 mlx4: ensure number of RX queues is a power of 2 v4: - Updated the doc of testpmd guide. v3: - Used versioning mechanism to avoid ABI issue. - Re-organized the patch set. v2: - Used RTE_NEXT_ABI to avoid ABI change issue. - Reworked the announcement of ABI change for release 16.07. - Fixed a i40e overflow issue. Helin Zhang (2): ethdev: add vlan type for setting ether type i40e: fix the overflow issue app/test-pmd/cmdline.c | 30 +++++++++----- app/test-pmd/config.c | 9 +++-- app/test-pmd/testpmd.h | 3 +- doc/guides/rel_notes/release_16_04.rst | 4 ++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 11 +---- drivers/net/e1000/igb_ethdev.c | 21 +++++++--- drivers/net/i40e/i40e_ethdev.c | 63 +++++++++++++++++++++++++++-- drivers/net/i40e/i40e_rxtx.c | 4 +- drivers/net/ixgbe/ixgbe_ethdev.c | 19 +++++++-- lib/librte_ether/rte_ethdev.c | 25 +++++++++++- lib/librte_ether/rte_ethdev.h | 23 ++++++++++- lib/librte_ether/rte_ether_version.map | 7 ++++ 12 files changed, 177 insertions(+), 42 deletions(-) -- 2.5.0