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 28B39689B for ; Thu, 25 Dec 2014 04:14:35 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 24 Dec 2014 19:10:41 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,640,1413270000"; d="scan'208";a="642616092" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 24 Dec 2014 19:14:34 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id sBP3EWjh016684; Thu, 25 Dec 2014 11:14:32 +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 sBP3EU6m014645; Thu, 25 Dec 2014 11:14:32 +0800 Received: (from wujingji@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id sBP3EU5c014641; Thu, 25 Dec 2014 11:14:30 +0800 From: Jingjing Wu To: dev@dpdk.org Date: Thu, 25 Dec 2014 11:14:26 +0800 Message-Id: <1419477270-14611-1-git-send-email-jingjing.wu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH 0/4] Integrate ethertype filter in igb/ixgbe 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: Thu, 25 Dec 2014 03:14:36 -0000 The patch set uses new filter_ctrl API to replace old ethertype filter APIs. It uses new functions and structure to replace old ones in igb/ixgbe driver, new commands to replace old ones in testpmd, and removes the old APIs. Jingjing Wu (4): ixgbe: new functions replaces old ones for ethertype filters e1000: new functions replaces old ones for ethertype filters testpmd: new commands for ethertype filter ethdev: remove old APIs and structures of ethertype filters app/test-pmd/cmdline.c | 253 ++++++++++++-------------- app/test-pmd/config.c | 27 --- lib/librte_ether/rte_ethdev.c | 57 ------ lib/librte_ether/rte_ethdev.h | 88 --------- lib/librte_pmd_e1000/e1000_ethdev.h | 13 ++ lib/librte_pmd_e1000/igb_ethdev.c | 332 +++++++++++++++++++++------------ lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 354 +++++++++++++++++++++++------------- lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 13 ++ 8 files changed, 579 insertions(+), 558 deletions(-) -- 1.9.3