From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 72CA13256 for ; Tue, 9 Jan 2018 08:11:23 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Jan 2018 23:11:22 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,334,1511856000"; d="scan'208";a="20087070" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by fmsmga001.fm.intel.com with ESMTP; 08 Jan 2018 23:11:22 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 8 Jan 2018 23:11:22 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.213]) by shsmsx102.ccr.corp.intel.com ([169.254.2.189]) with mapi id 14.03.0319.002; Tue, 9 Jan 2018 15:11:20 +0800 From: "Zhang, Helin" To: "Zhao1, Wei" , "dev@dpdk.org" CC: "Dai, Wei" Thread-Topic: [PATCH v6 0/2] move RSS to flow API Thread-Index: AQHTiRZq5PJxtpg4Wk2FN6WUfGrFFqNrH6Wg Date: Tue, 9 Jan 2018 07:11:19 +0000 Message-ID: References: <20180109062039.74777-1-wei.zhao1@intel.com> <20180109064430.112576-1-wei.zhao1@intel.com> In-Reply-To: <20180109064430.112576-1-wei.zhao1@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 v6 0/2] 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: Tue, 09 Jan 2018 07:11:23 -0000 > -----Original Message----- > From: Zhao1, Wei > Sent: Tuesday, January 9, 2018 2:44 PM > To: dev@dpdk.org > Cc: Zhang, Helin > Subject: [PATCH v6 0/2] move RSS to flow API >=20 > The patches mainly finish following functions: > 1) igb move RSS to flow API > 2) ixgbe move RSS to flow API >=20 > v2: > -fix bug for RSS flush code. > -fix patch check warning. >=20 > v3: > -fix bug for ixgbe rss restore. >=20 > v4: > -fix build warning and add release notes comment. >=20 > v5: > -rebase patch set. >=20 > v6: > -rebase patch set. >=20 > wei zhao (2): > net/e1000: move RSS to flow API > net/ixgbe: move RSS to flow API >=20 > doc/guides/rel_notes/release_18_02.rst | 6 ++ > drivers/net/e1000/e1000_ethdev.h | 20 ++++ > drivers/net/e1000/igb_ethdev.c | 17 ++++ > drivers/net/e1000/igb_flow.c | 160 > ++++++++++++++++++++++++++++++++ > drivers/net/e1000/igb_rxtx.c | 61 ++++++++++++ > 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 +++++++++++++ > 9 files changed, 517 insertions(+) >=20 > -- > 2.9.3 Applied to dpdk-next-net-intel, with minor commit log changes, thanks! /Helin