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 242BD48A44 for ; Fri, 31 Oct 2025 15:36:06 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1D66B4066C; Fri, 31 Oct 2025 15:36:06 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 6EF2440150 for ; Fri, 31 Oct 2025 15:36:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1761921364; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=HrgBbUGuflLKo8yLJA97DNay4B45+v4F0bKwsn7zzjA=; b=Jw4j1feVvJrZOdliyyPPZRVKztSF+sv2bznAjmcx03fXQSmki+DFenkq0WVw26I/DyOJAI L64xNxesxqJiUxG/XaknDwzHzwaNE+iM1+HG2QPyLhEbQ//S7M+humOdt9o2buxXnkRDvO YfH9ymMLZdI7W93CaEZAHmjXUCRU210= Received: from mx-prod-mc-06.mail-002.prod.us-west-2.aws.redhat.com (ec2-35-165-154-97.us-west-2.compute.amazonaws.com [35.165.154.97]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-661-FDsEWr9JNDK8QYZz5UN1XA-1; Fri, 31 Oct 2025 10:36:02 -0400 X-MC-Unique: FDsEWr9JNDK8QYZz5UN1XA-1 X-Mimecast-MFC-AGG-ID: FDsEWr9JNDK8QYZz5UN1XA_1761921361 Received: from mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.111]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-06.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id AE8201800451; Fri, 31 Oct 2025 14:36:01 +0000 (UTC) Received: from rh.redhat.com (unknown [10.44.32.50]) by mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 4E9871800452; Fri, 31 Oct 2025 14:36:00 +0000 (UTC) From: Kevin Traynor To: Gagandeep Singh Cc: dpdk stable Subject: patch 'net/dpaa2: fix shaper rate' has been queued to stable release 24.11.4 Date: Fri, 31 Oct 2025 14:32:23 +0000 Message-ID: <20251031143421.324432-21-ktraynor@redhat.com> In-Reply-To: <20251031143421.324432-1-ktraynor@redhat.com> References: <20251031143421.324432-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.111 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: 6KFw9p5BAB4WNoJ47T6MMYQTa1Xt5mhKBw06QVNPhQI_1761921361 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit content-type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi, FYI, your patch has been queued to stable release 24.11.4 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/05/25. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/496fcfae46fb987b68bd9e78066e8f02847a0db2 Thanks. Kevin --- >From 496fcfae46fb987b68bd9e78066e8f02847a0db2 Mon Sep 17 00:00:00 2001 From: Gagandeep Singh Date: Wed, 2 Jul 2025 15:21:41 +0530 Subject: [PATCH] net/dpaa2: fix shaper rate [ upstream commit 953b5576093dcd148b674bd2d53e5482970c1270 ] This patch fixes the shaper rate by configuring the user given rate in bytes. Earlier driver was considering the user given rate value in bits. Fixes: ac624068ee25 ("net/dpaa2: support traffic management") Signed-off-by: Gagandeep Singh --- drivers/net/dpaa2/dpaa2_tm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/dpaa2/dpaa2_tm.c b/drivers/net/dpaa2/dpaa2_tm.c index f91392b092..dbf66c756e 100644 --- a/drivers/net/dpaa2/dpaa2_tm.c +++ b/drivers/net/dpaa2/dpaa2_tm.c @@ -1,4 +1,4 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright 2020-2023 NXP + * Copyright 2020-2024 NXP */ @@ -734,10 +734,10 @@ dpaa2_hierarchy_commit(struct rte_eth_dev *dev, int clear_on_fail, node->profile->params.committed.size; tx_cr_shaper.rate_limit = - node->profile->params.committed.rate / - (1024 * 1024); + (node->profile->params.committed.rate / + (1024 * 1024)) * 8; tx_er_shaper.max_burst_size = node->profile->params.peak.size; tx_er_shaper.rate_limit = - node->profile->params.peak.rate / (1024 * 1024); + (node->profile->params.peak.rate / (1024 * 1024)) * 8; /* root node */ if (node->parent == NULL) { -- 2.51.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2025-10-31 13:53:52.916558425 +0000 +++ 0021-net-dpaa2-fix-shaper-rate.patch 2025-10-31 13:53:52.041596906 +0000 @@ -1 +1 @@ -From 953b5576093dcd148b674bd2d53e5482970c1270 Mon Sep 17 00:00:00 2001 +From 496fcfae46fb987b68bd9e78066e8f02847a0db2 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 953b5576093dcd148b674bd2d53e5482970c1270 ] + @@ -11 +12,0 @@ -Cc: stable@dpdk.org