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 37874A0032; Fri, 15 Jul 2022 15:27:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CA94840A87; Fri, 15 Jul 2022 15:27:25 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 1905540696 for ; Fri, 15 Jul 2022 15:27:23 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 26F9d0M6009931; Fri, 15 Jul 2022 06:25:19 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=pfpt0220; bh=llapMed+M7ja4/wyVhTIMkiqf6iu+Yr8ouadVU23RAw=; b=QnzY41qk3MBqO/Ur46rhuQCg09M2m5Kw7yeoL4cPofRb6UQX3A/bySmgltbVEcCZYRnZ mEGnSv3MIe0Tpa/dPU1O/5LewdhXm4V/BbD/3VaJSCi1xI/6vqBqcsZLMLFcyQwSssFd 2ArgoUydwtcgz+UulfYlgNHozIpF7p5gxMd/4E1wNGT9PgHMJ90Cf49NkNkjVibDmCaU UgNGMmVLcJeDJad30UVO8HGjio+z7ijvzxiimNwdkudlDFJ34w1gbkxNSLzbDbkm5PYv MsdCKGEKUDkYGPvh6ntchU/hUI6+bkAQHHsPHsDWiP17teTpEd1pGrGLDljpXxU1Bb6R 9g== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3h9udu9s5e-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 15 Jul 2022 06:25:19 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Fri, 15 Jul 2022 06:25:17 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Fri, 15 Jul 2022 06:25:17 -0700 Received: from cavium.localdomain (unknown [10.28.34.26]) by maili.marvell.com (Postfix) with ESMTP id DA6743F706F; Fri, 15 Jul 2022 06:25:13 -0700 (PDT) From: To: Ray Kinsella CC: , , , , , , , , Satha Rao Subject: [PATCH v3] doc: announce changes to rte_eth_set_queue_rate_limit API Date: Fri, 15 Jul 2022 09:25:07 -0400 Message-ID: <1657891507-15525-1-git-send-email-skoteshwar@marvell.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1656689558-27482-1-git-send-email-skoteshwar@marvell.com> References: <1656689558-27482-1-git-send-email-skoteshwar@marvell.com> MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-GUID: lyL--tsE84s7JVkLnGqZncV_PMGdizKU X-Proofpoint-ORIG-GUID: lyL--tsE84s7JVkLnGqZncV_PMGdizKU X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-07-15_05,2022-07-15_01,2022-06-22_01 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 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. -- 1.8.3.1