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 B5E833250 for ; Fri, 5 Jan 2018 07:01:10 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Jan 2018 22:01:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,317,1511856000"; d="scan'208";a="192565849" Received: from pgsmsx111.gar.corp.intel.com ([10.108.55.200]) by fmsmga006.fm.intel.com with ESMTP; 04 Jan 2018 22:01:08 -0800 Received: from pgsmsx112.gar.corp.intel.com ([169.254.3.86]) by PGSMSX111.gar.corp.intel.com ([169.254.2.98]) with mapi id 14.03.0319.002; Fri, 5 Jan 2018 14:01:07 +0800 From: "Dai, Wei" To: "Zhao1, Wei" , "dev@dpdk.org" Thread-Topic: [PATCH v4 2/2] net/ixgbe: move RSS to flow API Thread-Index: AQHThTFNQSEaGFcodkeEuYTZfSb2rKNkyoPQ Date: Fri, 5 Jan 2018 06:01:06 +0000 Message-ID: <49759EB36A64CF4892C1AFEC9231E8D66CF1EC3A@PGSMSX112.gar.corp.intel.com> References: <20171124080527.56495-1-wei.zhao1@intel.com> <20180104074629.126767-1-wei.zhao1@intel.com> <20180104074629.126767-3-wei.zhao1@intel.com> In-Reply-To: <20180104074629.126767-3-wei.zhao1@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDc4MTE0MzUtMDMzMC00NDVhLWE3ZjUtNzdlZTA1NGRiM2I2IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6IlRPTlVnTFR6ZUtjc0lnaWRhZ0x6QW9odXVOUUE3UDZ5MlAyK0Q0WnduUGc9In0= x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [172.30.20.206] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 2/2] net/ixgbe: move RSS to flow API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jan 2018 06:01:11 -0000 > -----Original Message----- > From: Zhao1, Wei > Sent: Thursday, January 4, 2018 3:46 PM > To: dev@dpdk.org > Cc: Dai, Wei ; Zhao1, Wei > Subject: [PATCH v4 2/2] net/ixgbe: move RSS to flow API >=20 > Rte_flow actually defined to include RSS, but till now, RSS is out of rte= _flow. > This patch is to move ixgbe existing RSS to rte_flow. > The old RSS configuration is still reserved. >=20 > Signed-off-by: Wei Zhao Acked-by: Wei Dai > --- > doc/guides/rel_notes/release_18_02.rst | 6 +- > drivers/net/ixgbe/ixgbe_ethdev.c | 13 +++ > drivers/net/ixgbe/ixgbe_ethdev.h | 10 ++ > drivers/net/ixgbe/ixgbe_flow.c | 165 > +++++++++++++++++++++++++++++++++ > drivers/net/ixgbe/ixgbe_rxtx.c | 65 +++++++++++++ > 5 files changed, 256 insertions(+), 3 deletions(-) >=20