From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 49575A04DD for ; Tue, 27 Oct 2020 01:03:55 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D15552BA3; Tue, 27 Oct 2020 01:03:53 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id A162F100C; Tue, 27 Oct 2020 01:03:49 +0100 (CET) IronPort-SDR: 74uOCYOLpy54hhGWixxTW7ab4bSe9Z4S/j5LrcPwteSS+tyU6pve9/fjdPJGL6n+O8PN6o+u85 BUB/q7VGHXIg== X-IronPort-AV: E=McAfee;i="6000,8403,9786"; a="147859134" X-IronPort-AV: E=Sophos;i="5.77,421,1596524400"; d="scan'208";a="147859134" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Oct 2020 17:03:48 -0700 IronPort-SDR: S7H/uWDn+ayRBfTnOECSN9cuUoKGGXQ6ZAMM+qGoJTa3lKa3ojQK7wkpCCW8lPRdpz+z+zuh8j 201KKqdD9SNA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,421,1596524400"; d="scan'208";a="360554040" Received: from fmsmsx606.amr.corp.intel.com ([10.18.126.86]) by FMSMGA003.fm.intel.com with ESMTP; 26 Oct 2020 17:03:48 -0700 Received: from shsmsx604.ccr.corp.intel.com (10.109.6.214) by fmsmsx606.amr.corp.intel.com (10.18.126.86) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Mon, 26 Oct 2020 17:03:47 -0700 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX604.ccr.corp.intel.com (10.109.6.214) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Tue, 27 Oct 2020 08:03:46 +0800 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.1713.004; Tue, 27 Oct 2020 08:03:45 +0800 From: "Zhang, Qi Z" To: "Guo, Jia" , "Xing, Beilei" , "dev@dpdk.org" CC: "stable@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH] net/i40e: fix FDIR issue for ETH + VLAN pattern Thread-Index: AQHWq2fT9d63+rniGECqNaz7DGSkX6mqkloA Date: Tue, 27 Oct 2020 00:03:45 +0000 Message-ID: References: <20201023081509.13087-1-beilei.xing@intel.com> <20201027062147.100445-1-beilei.xing@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.5.1.3 dlp-product: dlpe-windows x-originating-ip: [10.108.32.68] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] net/i40e: fix FDIR issue for ETH + VLAN pattern 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: , Errors-To: stable-bounces@dpdk.org Sender: "stable" > -----Original Message----- > From: dev On Behalf Of Guo, Jia > Sent: Monday, October 26, 2020 3:15 PM > To: Xing, Beilei ; dev@dpdk.org > Cc: stable@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] net/i40e: fix FDIR issue for ETH + VLAN p= attern >=20 > Acked-by: Jeff Guo >=20 > > -----Original Message----- > > From: Xing, Beilei > > Sent: Tuesday, October 27, 2020 2:22 PM > > To: dev@dpdk.org > > Cc: Guo, Jia ; Xing, Beilei > > ; stable@dpdk.org > > Subject: [PATCH] net/i40e: fix FDIR issue for ETH + VLAN pattern > > > > From: Beilei Xing > > > > Currently, can't create more than one following flow for ETH + VLAN pat= tern. > > > > 1. flow create 0 ingress pattern eth / vlan vid is 350 / end > > actions queue index 2 / end > > 2. flow create 0 ingress pattern eth / vlan vid is 351 / end > > actions queue index 3 / end > > > > The root cause is the vlan_tci is not set correctly, it will cause > > the keys of both of the two flows are the same. > > > > Fixes: 42044b69c67d ("net/i40e: support input set selection for FDIR") > > Cc: stable@dpdk.org > > > > Signed-off-by: Beilei Xing > > --- Applied to dpdk-next-net-intel. Thanks Qi