From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 817BB2C7A for ; Wed, 11 Feb 2015 08:51:58 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 10 Feb 2015 23:51:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,557,1418112000"; d="scan'208";a="664711187" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 10 Feb 2015 23:51:55 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t1B7prSf014925; Wed, 11 Feb 2015 15:51:53 +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 t1B7poMr000692; Wed, 11 Feb 2015 15:51:52 +0800 Received: (from wujingji@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t1B7po9P000688; Wed, 11 Feb 2015 15:51:50 +0800 From: Jingjing Wu To: dev@dpdk.org Date: Wed, 11 Feb 2015 15:51:44 +0800 Message-Id: <1423641110-658-1-git-send-email-jingjing.wu@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1420681358-24809-1-git-send-email-zhida.zang@intel.com> References: <1420681358-24809-1-git-send-email-zhida.zang@intel.com> Subject: [dpdk-dev] [PATCH v2 0/6] Integrate syn 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: Wed, 11 Feb 2015 07:51:59 -0000 v2 changes: - split one patch to patch series - change the command's format in testpmd. - return -ENOENT when deleting a disabled syn filter. - add doc changes in testpmd_funcs.rst - correct the errors reported by checkpatch.pl The patch set uses new filter_ctrl API to replace old syn 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 (6): ethdev: define syn filter type and its structure ixgbe: new functions replace old ones for syn filter e1000: new functions replace old ones for syn filter testpmd: new commands for syn filter ethdev: remove old APIs and structures of syn filter doc: commands changed in testpmd_funcs for syn filter app/test-pmd/cmdline.c | 143 +++++++++++------------- app/test-pmd/config.c | 21 ---- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 30 +---- lib/librte_ether/rte_eth_ctrl.h | 12 ++ lib/librte_ether/rte_ethdev.c | 50 --------- lib/librte_ether/rte_ethdev.h | 67 ----------- lib/librte_pmd_e1000/igb_ethdev.c | 152 +++++++++++++------------ lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 167 ++++++++++++++-------------- 8 files changed, 243 insertions(+), 399 deletions(-) -- 1.9.3