From patchwork Wed Jul 13 06:26:49 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Satha Koteswara Rao Kottidi X-Patchwork-Id: 113928 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id EBAC9A0032; Wed, 13 Jul 2022 08:29:07 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 863E14282D; Wed, 13 Jul 2022 08:29:07 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 03B354282B for ; Wed, 13 Jul 2022 08:29:05 +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 26D2MJG7026786; Tue, 12 Jul 2022 23:27:00 -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=zgaAR4SpG8fJClvsD6q5DUu/0GRG/DKj4ElLjjlavoY=; b=X04QNQbS/crplMO0nmtO6lNjs5zdDSMSUCy2WJGUmjT76Prm3Yu810r436ptAJHVpkmY qD1LYioSaJo3MCs3TA+52NqxxzAewff17RThqP8NM2cQjpYvLLr1AU9lvcJhmKLHhqxj XINjvwL4HOA8Idc9pbfCofvOxtdbxvmamE8tGpI7hYGnVDccwyTULs9RURiGpN16D7b7 ioGxk2PjSHPJkT2bToaOgTA5xvMS9p6GkeOe7WO51QzpTdlPkb+QFUK2QKuqzuH9+omF tRKAJD6b6OrmFyLKL3DhgSxZPWKKW/y33XK/S5LW1D90uUASYDcHEiWzdULgWh28JFBR fw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3h9n6n0nuc-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 12 Jul 2022 23:27:00 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Tue, 12 Jul 2022 23:26:58 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Tue, 12 Jul 2022 23:26:58 -0700 Received: from cavium.localdomain (unknown [10.28.34.26]) by maili.marvell.com (Postfix) with ESMTP id 7CD513F7064; Tue, 12 Jul 2022 23:26:55 -0700 (PDT) From: To: Ray Kinsella CC: , , , , , , , , Satha Rao Subject: [PATCH v2] doc: announce changes to rte_eth_set_queue_rate_limit api Date: Wed, 13 Jul 2022 02:26:49 -0400 Message-ID: <1657693610-4250-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 X-Proofpoint-ORIG-GUID: u_MuRKYVFS1uqdIwNzC1D0mx__Z7qc72 X-Proofpoint-GUID: u_MuRKYVFS1uqdIwNzC1D0mx__Z7qc72 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-12_14,2022-07-12_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 --- 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.