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 E33D75A8C for ; Mon, 12 Jan 2015 08:16:20 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP; 11 Jan 2015 23:13:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,691,1406617200"; d="scan'208";a="510823430" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga003.jf.intel.com with ESMTP; 11 Jan 2015 23:10:16 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t0C7GGkG006678; Mon, 12 Jan 2015 15:16:16 +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 t0C7GDYQ023318; Mon, 12 Jan 2015 15:16:15 +0800 Received: (from wujingji@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t0C7GD6D023314; Mon, 12 Jan 2015 15:16:13 +0800 From: Jingjing Wu To: dev@dpdk.org Date: Mon, 12 Jan 2015 15:16:09 +0800 Message-Id: <1421046973-23283-1-git-send-email-jingjing.wu@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1419477270-14611-1-git-send-email-jingjing.wu@intel.com> References: <1419477270-14611-1-git-send-email-jingjing.wu@intel.com> Subject: [dpdk-dev] [PATCH v2 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: Mon, 12 Jan 2015 07:16:21 -0000 v2 changes: change the return value if adding an existing filter from the filter's index to negative value. 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 replace old ones for ethertype filter e1000: new functions replace old ones for ethertype filter testpmd: new commands for ethertype filter ethdev: remove old APIs and structures of ethertype filter 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