patch 'net/octeon_ep: fix buffer refill' has been queued to stable release 24.11.3

Kevin Traynor ktraynor at redhat.com
Fri Jul 18 21:30:02 CEST 2025


Hi,

FYI, your patch has been queued to stable release 24.11.3

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 07/23/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/31097f329005a26fc69bd7e429194f783c57d0b1

Thanks.

Kevin

---
>From 31097f329005a26fc69bd7e429194f783c57d0b1 Mon Sep 17 00:00:00 2001
From: Vidya Sagar Velumuri <vvelumuri at marvell.com>
Date: Mon, 24 Mar 2025 16:38:50 +0530
Subject: [PATCH] net/octeon_ep: fix buffer refill

[ upstream commit fc3106f82afb3adc885e4fe3d4a83214e900062f ]

Fix the buffer refill for SDP output queue

Fixes: ab09499e809c ("net/octeon_ep: add SSE Rx")

Signed-off-by: Vidya Sagar Velumuri <vvelumuri at marvell.com>
Acked-by: Vamsi Attunuru <vattunuru at marvell.com>
---
 drivers/net/octeon_ep/cnxk_ep_rx.h | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/net/octeon_ep/cnxk_ep_rx.h b/drivers/net/octeon_ep/cnxk_ep_rx.h
index 83677e1c6f..5db32c4448 100644
--- a/drivers/net/octeon_ep/cnxk_ep_rx.h
+++ b/drivers/net/octeon_ep/cnxk_ep_rx.h
@@ -73,9 +73,8 @@ cnxk_ep_rx_refill(struct otx_ep_droq *droq)
 		count = droq->read_idx;
 		rc = cnxk_ep_rx_refill_mbuf(droq, count);
-		if (unlikely(rc)) {
+		if (unlikely(rc))
 			droq->stats.rx_alloc_failure++;
-			return;
-		}
-		desc_refilled += count;
+		else
+			desc_refilled += count;
 	}
 
-- 
2.50.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2025-07-18 20:29:13.421966962 +0100
+++ 0068-net-octeon_ep-fix-buffer-refill.patch	2025-07-18 20:29:10.968431240 +0100
@@ -1 +1 @@
-From fc3106f82afb3adc885e4fe3d4a83214e900062f Mon Sep 17 00:00:00 2001
+From 31097f329005a26fc69bd7e429194f783c57d0b1 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit fc3106f82afb3adc885e4fe3d4a83214e900062f ]
+
@@ -9 +10,0 @@
-Cc: stable at dpdk.org



More information about the stable mailing list