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 BD7B358EC for ; Fri, 15 Aug 2014 06:41:32 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 14 Aug 2014 21:38:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,867,1400050800"; d="scan'208";a="588435594" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga002.jf.intel.com with ESMTP; 14 Aug 2014 21:42:09 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.195.1; Thu, 14 Aug 2014 21:40:53 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.219]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.198]) with mapi id 14.03.0195.001; Fri, 15 Aug 2014 09:33:22 +0800 From: "Cao, Min" To: "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH 0/6] Support flow director programming on fortville Thread-Index: AQHPuCjmWTpTB7kZZ020LwnTfzcuZw== Date: Fri, 15 Aug 2014 01:33:21 +0000 Message-ID: References: <1406876916-24869-1-git-send-email-jingjing.wu@intel.com> In-Reply-To: <1406876916-24869-1-git-send-email-jingjing.wu@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 0/6] Support flow director programming on fortville 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: Fri, 15 Aug 2014 04:41:33 -0000 Tested-by: Cao Min This patch add i40e flow director fucntion, testpmd can works OK with it. It is ready to be integrated to dpdk.org. -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Jingjing Wu Sent: Friday, August 01, 2014 3:09 PM To: dev@dpdk.org Subject: [dpdk-dev] [PATCH 0/6] Support flow director programming on fortvi= lle The patch set supports flow director programming on fortville. It includes: - reserve i40e resources for flow director, such as queue and vsi. - support the new ethdev AP Irx_classification_filter_ctl for all=20 the configuration or queries for receive classification filters. - support programming 6 flow types for the flow director filters, which is called PCTYPE in fortville: ipv4, tcpv4, udpv4, ipv6, tcpv6, udpv6. - support flushing flow director table (all filters). - support match statistics and FD ID report. - all fix the the Marco conflict between rte_ip.h and netinet/in.h.=20 jingjing.wu (6): i40e: flow director resource reserve and initialize on i40e lib/librte_net: fix the Marco conflict between rte_ip.h and netinet/in.h ethdev: define new ethdev API rx_classification_filter_ctl i40e: function implement in i40e for flow director filter programming app/test-pmd: add commands and config functions for i40e flow director su= pport i40e: support FD ID report and match counter for i40e flow director app/test-pmd/cmdline.c | 665 ++++++++++++++++++++++++++++++++= ++++ app/test-pmd/config.c | 54 ++- app/test-pmd/testpmd.c | 22 ++ app/test-pmd/testpmd.h | 57 ++++ lib/librte_ether/Makefile | 3 +- lib/librte_ether/rte_eth_features.h | 64 ++++ lib/librte_ether/rte_ethdev.c | 19 +- lib/librte_ether/rte_ethdev.h | 108 +++--- lib/librte_net/rte_ip.h | 5 +- lib/librte_pmd_i40e/Makefile | 5 + lib/librte_pmd_i40e/i40e_ethdev.c | 98 +++++- lib/librte_pmd_i40e/i40e_ethdev.h | 32 +- lib/librte_pmd_i40e/i40e_fdir.c | 355 +++++++++++++++++++ lib/librte_pmd_i40e/i40e_rxtx.c | 176 +++++++++- lib/librte_pmd_i40e/rte_i40e.h | 125 +++++++ 15 files changed, 1727 insertions(+), 61 deletions(-) create mode 100644 lib/librte_ether/rte_eth_features.h create mode 100644 lib/librte_pmd_i40e/i40e_fdir.c create mode 100644 lib/librte_pmd_i40e/rte_i40e.h --=20 1.8.1.4