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 64FB05A7C for ; Thu, 29 Jan 2015 06:29:33 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP; 28 Jan 2015 21:25:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,484,1418112000"; d="scan'208";a="669511889" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga002.fm.intel.com with ESMTP; 28 Jan 2015 21:29:30 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t0T5TR8G022462; Thu, 29 Jan 2015 13:29:27 +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 t0T5TP2P013630; Thu, 29 Jan 2015 13:29:27 +0800 Received: (from wujingji@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t0T5TP88013626; Thu, 29 Jan 2015 13:29:25 +0800 From: Jingjing Wu To: dev@dpdk.org Date: Thu, 29 Jan 2015 13:29:10 +0800 Message-Id: <1422509365-13596-1-git-send-email-jingjing.wu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH 00/15] migrate flow director in 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, 29 Jan 2015 05:29:33 -0000 The patch set uses new filter_ctrl API to replace old flow director filter APIs. It uses new functions and structure to replace old ones in ixgbe driver, updates commands to replace old ones in testpmd, and removes the old APIs Jingjing Wu (15): ixgbe: migrate flow director filter operations (add/delete/update) to new API ethdev: extend flow type and flexible payload type definition for flow director ixgbe: implement the flexpayload configuration of flow director filter app/test: remove the flexbytes_offset setting in test_link_bonding testpmd: remove the flexbytes_offset setting ethdev: remove flexbytes_offset from rte_fdir_conf ethdev: structures definition for flow director masks ixgbe: implement the mask configuration of flow director filter ixgbe: implement the get info and statistic operations of flow director ixgbe: implement the flush operation of flow director testpmd: add and update commands for flow director testpmd: update function to show flow director information testpmd: set the default value of flow director's mask testpmd: remove old commands for flow director doc: commands changed in testpmd_funcs.rst for flow director app/test-pmd/cmdline.c | 755 ++++------------- app/test-pmd/config.c | 197 +---- app/test-pmd/parameters.c | 16 - app/test-pmd/testpmd.c | 14 +- app/test-pmd/testpmd.h | 16 - app/test/test_link_bonding.c | 1 - doc/guides/testpmd_app_ug/testpmd_funcs.rst | 287 +++---- lib/librte_ether/rte_eth_ctrl.h | 15 + lib/librte_ether/rte_ethdev.h | 3 +- lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 11 +- lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 43 +- lib/librte_pmd_ixgbe/ixgbe_fdir.c | 1169 ++++++++++++++++----------- 12 files changed, 1054 insertions(+), 1473 deletions(-) -- 1.9.3