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 C142B293C for ; Thu, 25 Jan 2018 07:10:56 +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 orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Jan 2018 22:10:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,409,1511856000"; d="scan'208";a="198633760" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga006.fm.intel.com with ESMTP; 24 Jan 2018 22:10:54 -0800 Received: from fmsmsx154.amr.corp.intel.com (10.18.116.70) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 24 Jan 2018 22:10:52 -0800 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX154.amr.corp.intel.com (10.18.116.70) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 24 Jan 2018 22:10:52 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.213]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.159]) with mapi id 14.03.0319.002; Thu, 25 Jan 2018 14:10:50 +0800 From: "Zhang, Qi Z" To: "Xing, Beilei" CC: "dev@dpdk.org" , "Zhao1, Wei" Thread-Topic: [PATCH] net/i40e: fix incorrect return Thread-Index: AQHTlaJocekYcDoZXEasSOxqHGgA1KOEGvUw Date: Thu, 25 Jan 2018 06:10:50 +0000 Message-ID: <039ED4275CED7440929022BC67E706115313389A@SHSMSX103.ccr.corp.intel.com> References: <20180125060418.41759-1-qi.z.zhang@intel.com> In-Reply-To: <20180125060418.41759-1-qi.z.zhang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action 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] net/i40e: fix incorrect return 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: Thu, 25 Jan 2018 06:10:57 -0000 > -----Original Message----- > From: Zhang, Qi Z > Sent: Thursday, January 25, 2018 2:04 PM > To: Xing, Beilei > Cc: dev@dpdk.org; Zhao1, Wei ; Zhang, Qi Z > > Subject: [PATCH] net/i40e: fix incorrect return >=20 > Fix incorrect function return. >=20 > Fixes: ecad87d22383e ("net/i40e: move RSS to flow API") >=20 > Signed-off-by: Qi Zhang > --- > drivers/net/i40e/i40e_ethdev.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethde= v.c > index c4df65df0..74b43290c 100644 > --- a/drivers/net/i40e/i40e_ethdev.c > +++ b/drivers/net/i40e/i40e_ethdev.c > @@ -11681,7 +11681,7 @@ i40e_config_rss_filter(struct i40e_pf *pf, > sizeof(uint32_t); > } >=20 > - return i40e_hw_rss_hash_set(pf, &rss_conf); > + i40e_hw_rss_hash_set(pf, &rss_conf); >=20 > rte_memcpy(rss_info, > conf, sizeof(struct i40e_rte_flow_rss_conf)); > -- > 2.13.6 Nacked-by Qi Zhang since its already be covered by Z= hao Wei's previous fix.