From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id AE9C5A0353; Thu, 24 Feb 2022 09:37:34 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9D42841155; Thu, 24 Feb 2022 09:37:34 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 2CF854114D for ; Thu, 24 Feb 2022 09:37:33 +0100 (CET) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id B961E56; Thu, 24 Feb 2022 11:37:32 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru B961E56 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1645691852; bh=/I9uZZFuzTZSOU9Z8wY1JmXzTN6P9PViMKLAPBQvFGM=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=P7yKnpGaXon2miEoyDdQgThc5apKf87EXhunADIZFKLrMnZD9ZJywG/BRDShymC/0 SqTwxkaNBwr5XPckj7//Vzsoz93o5gYIiyY31jTBXIAR4YgTi85Dx9c5+YXNyPEfDG JK0aOSJ50xrjaZMR5PrKlJ6oZ0NuXMUt/GtTZBeI= Message-ID: Date: Thu, 24 Feb 2022 11:37:32 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Subject: Re: [PATCH v10 04/11] ethdev: bring in async indirect actions operations Content-Language: en-US To: Alexander Kozyrev , dev@dpdk.org Cc: orika@nvidia.com, thomas@monjalon.net, ivan.malov@oktetlabs.ru, ferruh.yigit@intel.com, mohammad.abdul.awal@intel.com, qi.z.zhang@intel.com, jerinj@marvell.com, ajit.khaparde@broadcom.com, bruce.richardson@intel.com References: <20220221230240.2409665-1-akozyrev@nvidia.com> <20220223030240.2506513-1-akozyrev@nvidia.com> <20220223030240.2506513-5-akozyrev@nvidia.com> From: Andrew Rybchenko Organization: OKTET Labs In-Reply-To: <20220223030240.2506513-5-akozyrev@nvidia.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On 2/23/22 06:02, Alexander Kozyrev wrote: > Queue-based flow rules management mechanism is suitable > not only for flow rules creation/destruction, but also > for speeding up other types of Flow API management. > Indirect action object operations may be executed > asynchronously as well. Provide async versions for all > indirect action operations, namely: > rte_flow_async_action_handle_create, > rte_flow_async_action_handle_destroy and > rte_flow_async_action_handle_update. > > Signed-off-by: Alexander Kozyrev > Acked-by: Ori Kam Acked-by: Andrew Rybchenko