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 76143A0032; Fri, 15 Jul 2022 16:23:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 18AA140A87; Fri, 15 Jul 2022 16:23:21 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 863D740696 for ; Fri, 15 Jul 2022 16:23:20 +0200 (CEST) Received: from [192.168.1.39] (unknown [188.170.75.69]) (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 D2313CB; Fri, 15 Jul 2022 17:23:18 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru D2313CB DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1657894999; bh=SSDGGy+B9sjm548ysJa2Xe6e0pWtaw739NMuVuhaUlE=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=clPgF9KiPRUSVjX3rMaFeaAxP8jYMhIbdyHpF/O7azHivc98PSkAXCFXVp5qn6/ah nXIKXqBcWC6gYe1azed8d5BvQ2XimIPHv5lrQJJGh9koDQwHS4FUvOSSlBtrdtAgvo VdbXFZbMYd4ynT9atmqYwFGXm6Jq/8dr83jIXNDs= Message-ID: <07bc6e05-353e-35ad-f933-8ef438009e01@oktetlabs.ru> Date: Fri, 15 Jul 2022 17:23:17 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0 Subject: Re: [PATCH v3] doc: announce changes to rte_eth_set_queue_rate_limit API Content-Language: en-US To: skoteshwar@marvell.com, Ray Kinsella Cc: dev@dpdk.org, thomas@monjalon.net, ferruh.yigit@amd.com, bruce.richardson@intel.com, konstantin.v.ananyev@yandex.ru, ajit.khaparde@broadcom.com, jerinj@marvell.com References: <1656689558-27482-1-git-send-email-skoteshwar@marvell.com> <1657891507-15525-1-git-send-email-skoteshwar@marvell.com> From: Andrew Rybchenko In-Reply-To: <1657891507-15525-1-git-send-email-skoteshwar@marvell.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 7/15/22 16:25, skoteshwar@marvell.com wrote: > From: Satha Rao > > rte_eth_set_queue_rate_limit argument rate modified to uint32_t > to support more than 64Gbps. > > Signed-off-by: Satha Rao > Acked-by: Jerin Jacob > --- > > v2: Modified rate to uint32_t as per review comments > v3: api in subject line changed to API > > --- > > doc/guides/rel_notes/deprecation.rst | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst > index 4e5b23c..36e0f67 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -125,3 +125,8 @@ Deprecation Notices > applications should be updated to use the ``dmadev`` library instead, > with the underlying HW-functionality being provided by the ``ioat`` or > ``idxd`` dma drivers > + > +* ethdev: The function ``rte_eth_set_queue_rate_limit`` takes ``rate`` in Mbps. > + This parameter declared as uint16_t, queue rate limited to 64Gbps. ``rate`` > + parameter will be modified to uint32_t in DPDK 22.11 so that it can work for > + more than 64Gbps. Acked-by: Andrew Rybchenko