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 E3D3AA09D9; Wed, 11 Nov 2020 13:39:53 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A90D02BAB; Wed, 11 Nov 2020 13:39:52 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 85C38F90 for ; Wed, 11 Nov 2020 13:39:49 +0100 (CET) IronPort-SDR: Ixa1MYPOgyQ8LMQIh39ozBnwnDfjV+rcrRwJNidCMDaZkHQrqRpThmhJ7Jygh4BWAbOkmOQnKP nMCa7rxckE4w== X-IronPort-AV: E=McAfee;i="6000,8403,9801"; a="234305091" X-IronPort-AV: E=Sophos;i="5.77,469,1596524400"; d="scan'208";a="234305091" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Nov 2020 04:39:45 -0800 IronPort-SDR: aERkSBWmW/P5158rH2Fl74YViMxj78/yNccKT+IXsqDOGpZ8ee8pNCoGtKFhHoJaGR1IfmGuaG RqURnIkpy8KQ== X-IronPort-AV: E=Sophos;i="5.77,469,1596524400"; d="scan'208";a="473837881" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.241.123]) ([10.213.241.123]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Nov 2020 04:39:44 -0800 To: Suanming Mou , rasland@nvidia.com Cc: viacheslavo@nvidia.com, matan@nvidia.com, dev@dpdk.org References: <1604632107-146708-1-git-send-email-suanmingm@nvidia.com> <1604978882-63177-1-git-send-email-suanmingm@nvidia.com> From: Ferruh Yigit Message-ID: Date: Wed, 11 Nov 2020 12:39:40 +0000 MIME-Version: 1.0 In-Reply-To: <1604978882-63177-1-git-send-email-suanmingm@nvidia.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2] net/mlx5: fix shared RSS action release 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 11/10/2020 3:28 AM, Suanming Mou wrote: > As shared RSS action will be shared by multiple flows, the action > is created as global standalone action and managed only by the > relevant shared action management functions. > > Currently, hrxqs will be created by shared RSS action or general > queue action. For hrxqs created by shared RSS action, they should > also only be released with shared RSS action. It's not correct to > release the shared RSS action hrxqs as general queue actions do > in flow destroy. > > This commit adds a new fate action type for shared RSS action to > handle the shared RSS action hrxq release correctly. > > Fixes: e1592b6c4dea ("net/mlx5: make Rx queue thread safe") > > Signed-off-by: Suanming Mou > Acked-by: Matan Azrad Applied to dpdk-next-net/main, thanks.