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 221A7B548 for ; Sun, 15 Feb 2015 06:03:40 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP; 14 Feb 2015 21:03:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,579,1418112000"; d="scan'208";a="652351943" Received: from pgsmsx104.gar.corp.intel.com ([10.221.44.91]) by orsmga001.jf.intel.com with ESMTP; 14 Feb 2015 21:03:38 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by PGSMSX104.gar.corp.intel.com (10.221.44.91) with Microsoft SMTP Server (TLS) id 14.3.195.1; Sun, 15 Feb 2015 13:03:37 +0800 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.161]) by shsmsx102.ccr.corp.intel.com ([169.254.2.62]) with mapi id 14.03.0195.001; Sun, 15 Feb 2015 13:03:36 +0800 From: "Wu, Jingjing" To: "Zhang, Helin" , "dev@dpdk.org" Thread-Topic: [PATCH v2 0/7] unified flow types and RSS offload types Thread-Index: AQHQQEqQtIFtBG0gck6mTeV+Ii+0TZzxOODA Date: Sun, 15 Feb 2015 05:03:36 +0000 Message-ID: <9BB6961774997848B5B42BEC655768F8BA84DF@SHSMSX104.ccr.corp.intel.com> References: <1421650577-25969-1-git-send-email-helin.zhang@intel.com> <1423034193-26966-1-git-send-email-helin.zhang@intel.com> In-Reply-To: <1423034193-26966-1-git-send-email-helin.zhang@intel.com> Accept-Language: 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 v2 0/7] unified flow types and RSS offload types 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: Sun, 15 Feb 2015 05:03:41 -0000 > -----Original Message----- > From: Zhang, Helin > Sent: Wednesday, February 04, 2015 3:16 PM > To: dev@dpdk.org > Cc: Wu, Jingjing; Cao, Waterman; Zhang, Helin > Subject: [PATCH v2 0/7] unified flow types and RSS offload types >=20 > It unifies the flow types and RSS offload types for all PMDs. Previously = flow > types are defined specifically for i40e, and there has different RSS offl= oads > tyeps for 1/10G and 40G seperately. This is not so convenient for applica= tion > development, and not good for adding new PMDs. > In addition, it enables new RSS offloads of 'tcp' and 'all' in testpmd. >=20 > v2 changes: > * Integrated with configuring hash functions. > * Corrected the wrong help string of flow director parameters. > * Renamed the flow types from ETH_FLOW_TYPE_ to RTE_ETH_FLOW_. > * Removed useless annotations for flow type elements in rte_eth_ctrl.h. >=20 > Helin Zhang (7): > app/test-pmd: code style fix > ethdev: code style fix > i40e: code style fix > ethdev: fix of calculating the size of flow type mask array > ethdev: unification of flow types > ethdev: unification of RSS offload types > app/testpmd: support new rss offloads >=20 > app/test-pipeline/init.c | 2 +- > app/test-pmd/cmdline.c | 154 +++++++++++++++++++-------= ---- > app/test-pmd/config.c | 137 +++++++++++++++++--------- > examples/distributor/main.c | 9 +- > examples/ip_pipeline/init.c | 2 +- > examples/l3fwd-acl/main.c | 7 +- > lib/librte_ether/rte_eth_ctrl.h | 94 ++++++++++-------- > lib/librte_ether/rte_ethdev.h | 147 ++++++++++++--------------= -- > lib/librte_pmd_e1000/e1000_ethdev.h | 11 +++ > lib/librte_pmd_e1000/igb_ethdev.c | 1 + > lib/librte_pmd_e1000/igb_rxtx.c | 27 ++---- > lib/librte_pmd_i40e/i40e_ethdev.c | 164 +++++++++++++++++---------= --- > --- > lib/librte_pmd_i40e/i40e_ethdev.h | 52 +++++----- > lib/librte_pmd_i40e/i40e_ethdev_vf.c | 1 + > lib/librte_pmd_i40e/i40e_fdir.c | 99 ++++++++++--------- > lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 1 + > lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 11 +++ > lib/librte_pmd_ixgbe/ixgbe_rxtx.c | 27 ++---- > lib/librte_pmd_vmxnet3/vmxnet3_ethdev.c | 1 + > lib/librte_pmd_vmxnet3/vmxnet3_ethdev.h | 6 ++ > lib/librte_pmd_vmxnet3/vmxnet3_rxtx.c | 10 +- > 21 files changed, 525 insertions(+), 438 deletions(-) >=20 > -- > 1.9.3 Acked-by: Jingjing Wu