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 7F589A0555; Thu, 9 Jun 2022 14:18:49 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6FD0E40689; Thu, 9 Jun 2022 14:18:49 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id E3B5940220 for ; Thu, 9 Jun 2022 14:18:47 +0200 (CEST) Received: from [192.168.1.40] (unknown [188.170.81.145]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 8143A2D5; Thu, 9 Jun 2022 15:18:46 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 8143A2D5 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1654777127; bh=3EaCizg/KeBMwDFM4+1fYIJIEUt51U8jdojKj2aihUQ=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=lIQEUevYQURHCQ/EzQtkD81JDrHE8QF7MSWwle/Vb6CBoxfcdklFE6LGV01WVKpD7 9FDNXcViRiM+fDk8hzGUzznqnDBbgm77j1lHNF92EZWEzHzi0GYgrdn/f5PuZ0Nue8 mkPL4S6ed93JeT0qQJe6tfwbq1czgzRf75Ed7ZJE= Message-ID: Date: Thu, 9 Jun 2022 15:18:45 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.0 Subject: Re: [PATCH v3 1/7] ethdev: add meter color flow matching item Content-Language: en-US To: Alexander Kozyrev , dev@dpdk.org Cc: cristian.dumitrescu@intel.com, jerinjacobk@gmail.com, orika@nvidia.com, thomas@monjalon.net, ivan.malov@oktetlabs.ru, ferruh.yigit@xilinx.com, mohammad.abdul.awal@intel.com, qi.z.zhang@intel.com, jerinj@marvell.com, ajit.khaparde@broadcom.com, bruce.richardson@intel.com References: <20220522105102.1692526-1-akozyrev@nvidia.com> <20220601034408.2579943-1-akozyrev@nvidia.com> <20220601034408.2579943-2-akozyrev@nvidia.com> From: Andrew Rybchenko In-Reply-To: <20220601034408.2579943-2-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 6/1/22 06:44, Alexander Kozyrev wrote: > Provide an ability to use a Color Marker set by a Meter > as a matching item in Flow API. The Color Marker reflects > the metering result by setting the metadata for a > packet to a particular codepoint: green, yellow or red. > > Signed-off-by: Alexander Kozyrev Reviewed-by: Andrew Rybchenko One nit below. Please, fix in the next version if required. [snip] > diff --git a/doc/guides/rel_notes/release_22_07.rst b/doc/guides/rel_notes/release_22_07.rst > index 0ed4f92820..c1804bc74f 100644 > --- a/doc/guides/rel_notes/release_22_07.rst > +++ b/doc/guides/rel_notes/release_22_07.rst > @@ -69,6 +69,10 @@ New Features > Added an API which can get the number of in-flight packets in > vhost async data path without using lock. > > +* **Extended Metering and Marking support in the Flow API.** > + > + * Added METER_COLOR item to match Color Marker set by a Meter. > + It should be nearby ethdev features. > * **Updated Intel iavf driver.** > > * Added Tx QoS queue rate limitation support. [snip]