From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 308A92716 for ; Fri, 5 Jun 2015 10:16:13 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP; 05 Jun 2015 01:16:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,557,1427785200"; d="scan'208";a="721223459" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 05 Jun 2015 01:16:11 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t558G9sR025933; Fri, 5 Jun 2015 16:16:09 +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 t558G6Nu030792; Fri, 5 Jun 2015 16:16:08 +0800 Received: (from wujingji@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t558G6I4030788; Fri, 5 Jun 2015 16:16:06 +0800 From: Jingjing Wu To: dev@dpdk.org Date: Fri, 5 Jun 2015 16:16:02 +0800 Message-Id: <1433492166-30758-1-git-send-email-jingjing.wu@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1433231760-30315-1-git-send-email-jingjing.wu@intel.com> References: <1433231760-30315-1-git-send-email-jingjing.wu@intel.com> Subject: [dpdk-dev] [PATCH v3 0/4] enable mirror functionality in i40e driver 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, 05 Jun 2015 08:16:13 -0000 This patch set enables mirror functionality in i40e driver, and redefines structure and macros used to configure mirror. v2 changes: - correct comments style - add doc change v3 changes: - change the mirror rule type to support bit mask and avoid ABI broken - fix code style Jingjing Wu (4): ethdev: rename rte_eth_vmdq_mirror_conf ethdev: redefine the mirror type i40e: enable mirror functionality in i40e driver doc: modify the command about mirror in testpmd guide app/test-pmd/cmdline.c | 62 +++--- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 8 +- drivers/net/i40e/i40e_ethdev.c | 334 ++++++++++++++++++++++++++++ drivers/net/i40e/i40e_ethdev.h | 23 ++ drivers/net/ixgbe/ixgbe_ethdev.c | 64 ++++-- drivers/net/ixgbe/ixgbe_ethdev.h | 4 +- lib/librte_ether/rte_ethdev.c | 28 +-- lib/librte_ether/rte_ethdev.h | 30 +-- 8 files changed, 467 insertions(+), 86 deletions(-) -- 1.9.3