From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 4C2AC1B266; Tue, 31 Oct 2017 10:49:54 +0100 (CET) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga105.jf.intel.com with ESMTP; 31 Oct 2017 02:49:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,323,1505804400"; d="scan'208";a="169944953" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga006.fm.intel.com with ESMTP; 31 Oct 2017 02:49:53 -0700 Received: from fmsmsx156.amr.corp.intel.com (10.18.116.74) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 31 Oct 2017 02:49:53 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx156.amr.corp.intel.com (10.18.116.74) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 31 Oct 2017 02:49:52 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.159]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.218]) with mapi id 14.03.0319.002; Tue, 31 Oct 2017 17:48:56 +0800 From: "Xing, Beilei" To: "Zhang, Qi Z" CC: "dev@dpdk.org" , "stable@dpdk.org" Thread-Topic: [PATCH] net/i40e: fix mirror for new FW Thread-Index: AQHTUhJoj8bTuXr3pk2V62DhQCpQ8KL9to6g Date: Tue, 31 Oct 2017 09:48:55 +0000 Message-ID: <94479800C636CB44BD422CB454846E01320623C7@SHSMSX101.ccr.corp.intel.com> References: <20171031142642.25548-1-qi.z.zhang@intel.com> In-Reply-To: <20171031142642.25548-1-qi.z.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-stable] [PATCH] net/i40e: fix mirror for new FW X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Oct 2017 09:49:55 -0000 > -----Original Message----- > From: Zhang, Qi Z > Sent: Tuesday, October 31, 2017 10:27 PM > To: Xing, Beilei > Cc: dev@dpdk.org; Zhang, Qi Z ; stable@dpdk.org > Subject: [PATCH] net/i40e: fix mirror for new FW >=20 > Value of I40E_GL_SWR_PRI_JOIN_MAP_0 need to be corrected or mirror > does not work on latest firmware 6.0. >=20 > Fixes: 77370db964f7 ("net/i40e: fix ethertype filter for new FW") > Cc: stable@dpdk.org >=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 5f26e24..3b4dae6 100644 > --- a/drivers/net/i40e/i40e_ethdev.c > +++ b/drivers/net/i40e/i40e_ethdev.c > @@ -9238,7 +9238,7 @@ i40e_pctype_to_flowtype(enum i40e_filter_pctype > pctype) >=20 > /* For both X710 and XL710 */ > #define I40E_GL_SWR_PRI_JOIN_MAP_0_VALUE_1 0x10000200 > -#define I40E_GL_SWR_PRI_JOIN_MAP_0_VALUE_2 0x20000200 > +#define I40E_GL_SWR_PRI_JOIN_MAP_0_VALUE_2 0x203F0200 > #define I40E_GL_SWR_PRI_JOIN_MAP_0 0x26CE00 >=20 > #define I40E_GL_SWR_PRI_JOIN_MAP_2_VALUE 0x011f0200 > -- > 2.9.5 Acked-by: Beilei Xing