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 BA89DB789 for ; Sat, 21 Feb 2015 02:53:15 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP; 20 Feb 2015 17:45:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,618,1418112000"; d="scan'208";a="681159568" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 20 Feb 2015 17:53:13 -0800 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t1L1rClA029663; Sat, 21 Feb 2015 01:53:12 GMT Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t1L1rCde025999; Sat, 21 Feb 2015 01:53:12 GMT Received: (from pdelarax@localhost) by sivswdev02.ir.intel.com with id t1L1rC31025995; Sat, 21 Feb 2015 01:53:12 GMT From: Pablo de Lara To: dev@dpdk.org Date: Sat, 21 Feb 2015 01:53:06 +0000 Message-Id: <1424483591-25944-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1423973254-605-1-git-send-email-jingjing.wu@intel.com> References: <1423973254-605-1-git-send-email-jingjing.wu@intel.com> Subject: [dpdk-dev] [PATCH v3 0/5] Integrate flex filter in igb driver to new API 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: Sat, 21 Feb 2015 01:53:16 -0000 The patch set uses new filter_ctrl API to replace old flex filter APIs. It uses new functions and structure to replace old ones in igb driver, new commands to replace old ones in testpmd, and removes the old APIs. v3 changes: - fix testpmd documentation v2 changes: - split one patch to patch series - change the command's format in testpmd. - add doc changes in testpmd_funcs.rst - correct the errors reported by checkpatch.pl Jingjing Wu (5): ethdev: define flex filter type and its structure e1000: new functions replace old ones for flex filter testpmd: new commands for flex filter ethdev: remove old APIs and structures of flex filter doc: commands changed in testpmd_funcs for flex filter app/test-pmd/cmdline.c | 239 ++++++++------------ app/test-pmd/config.c | 33 --- app/test-pmd/testpmd.h | 1 - doc/guides/testpmd_app_ug/testpmd_funcs.rst | 64 ++---- lib/librte_ether/rte_eth_ctrl.h | 20 ++ lib/librte_ether/rte_ethdev.c | 51 ---- lib/librte_ether/rte_ethdev.h | 89 ------- lib/librte_pmd_e1000/e1000_ethdev.h | 27 ++- lib/librte_pmd_e1000/igb_ethdev.c | 332 +++++++++++++++++---------- 9 files changed, 356 insertions(+), 500 deletions(-) -- 1.7.4.1