From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 8753D5A9B for ; Thu, 11 Jun 2015 09:04:12 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP; 11 Jun 2015 00:04:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,593,1427785200"; d="scan'208";a="506524673" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by FMSMGA003.fm.intel.com with ESMTP; 11 Jun 2015 00:04:10 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t5B745xG032172; Thu, 11 Jun 2015 15:04:05 +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 t5B7433f007305; Thu, 11 Jun 2015 15:04:05 +0800 Received: (from hzhan75@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t5B742L2007301; Thu, 11 Jun 2015 15:04:02 +0800 From: Helin Zhang To: dev@dpdk.org Date: Thu, 11 Jun 2015 15:03:53 +0800 Message-Id: <1434006240-7271-1-git-send-email-helin.zhang@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1433214967-22247-1-git-send-email-helin.zhang@intel.com> References: <1433214967-22247-1-git-send-email-helin.zhang@intel.com> Subject: [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: Thu, 11 Jun 2015 07:04:12 -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 app/test-pmd/cmdline.c | 78 ++++++++++++++++++++++++--- app/test-pmd/config.c | 21 +++++++- app/test-pmd/flowgen.c | 4 +- app/test-pmd/macfwd.c | 3 ++ app/test-pmd/macswap.c | 3 ++ app/test-pmd/rxonly.c | 3 ++ app/test-pmd/testpmd.h | 6 ++- app/test-pmd/txonly.c | 8 ++- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 14 ++++- drivers/net/i40e/i40e_ethdev.c | 52 ++++++++++++++++++ drivers/net/i40e/i40e_ethdev_vf.c | 13 +++++ drivers/net/i40e/i40e_rxtx.c | 81 ++++++++++++++++++----------- drivers/net/ixgbe/ixgbe_rxtx.c | 1 - examples/ipv4_multicast/main.c | 1 + lib/librte_ether/rte_ethdev.h | 2 + lib/librte_mbuf/rte_mbuf.h | 10 +++- 16 files changed, 255 insertions(+), 45 deletions(-) -- 1.9.3