From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id C9A011BB74 for ; Wed, 4 Apr 2018 06:05:56 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Apr 2018 21:05:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,404,1517904000"; d="scan'208";a="217455435" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by fmsmga005.fm.intel.com with ESMTP; 03 Apr 2018 21:05:55 -0700 Received: from fmsmsx121.amr.corp.intel.com (10.18.125.36) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 3 Apr 2018 21:05:55 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx121.amr.corp.intel.com (10.18.125.36) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 3 Apr 2018 21:05:54 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.241]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.88]) with mapi id 14.03.0319.002; Wed, 4 Apr 2018 12:05:53 +0800 From: "Zhang, Qi Z" To: "Zhao1, Wei" , "dev@dpdk.org" Thread-Topic: [PATCH] net/i40e: fix flow RSS queue region error Thread-Index: AQHTyxTkt3l4nssQLUulg+E+CSAEX6Pv/i7Q Date: Wed, 4 Apr 2018 04:05:52 +0000 Message-ID: <039ED4275CED7440929022BC67E7061153182154@SHSMSX103.ccr.corp.intel.com> References: <1522735748-27004-1-git-send-email-wei.zhao1@intel.com> In-Reply-To: <1522735748-27004-1-git-send-email-wei.zhao1@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 flow RSS queue region error 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: Wed, 04 Apr 2018 04:05:57 -0000 > -----Original Message----- > From: Zhao1, Wei > Sent: Tuesday, April 3, 2018 2:09 PM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; Zhao1, Wei > Subject: [PATCH] net/i40e: fix flow RSS queue region error >=20 > Queue region comparison error in configuration parameters. >=20 > Fixes: ecad87d22383 ("net/i40e: move RSS to flow API") > Signed-off-by: Wei Zhao > Tested-by: Peng Yuan Acked-by: Qi Zhang > --- > drivers/net/i40e/i40e_flow.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/drivers/net/i40e/i40e_flow.c b/drivers/net/i40e/i40e_flow.c = index > 8d0a36b..f3e8c5f 100644 > --- a/drivers/net/i40e/i40e_flow.c > +++ b/drivers/net/i40e/i40e_flow.c > @@ -4239,7 +4239,7 @@ i40e_flow_parse_rss_action(struct rte_eth_dev > *dev, > } >=20 > if (rss_info->num < rss->num || > - rss_info->queue[0] < rss->queue[0] || > + rss->queue[0] < rss_info->queue[0] || > (rss->queue[0] + rss->num > > rss_info->num + rss_info->queue[0])) { > rte_flow_error_set(error, EINVAL, > -- > 2.7.5