patch 'ipc: fix log message in async request' has been queued to stable release 25.11.3

Kevin Traynor ktraynor at redhat.com
Tue Jul 28 17:56:44 CEST 2026


Hi,

FYI, your patch has been queued to stable release 25.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 08/01/26. 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/29b426a151071611926bc3a054f52cc224b2e59b

Thanks.

Kevin

---
>From 29b426a151071611926bc3a054f52cc224b2e59b Mon Sep 17 00:00:00 2001
From: Anatoly Burakov <anatoly.burakov at intel.com>
Date: Fri, 26 Jun 2026 11:33:56 +0100
Subject: [PATCH] ipc: fix log message in async request

[ upstream commit fc32ccd591f364517500d11c77fa78d04d058194 ]

The allocation failure log message in mp_request_async() says "sync
request" but the function handles asynchronous requests.

Fix the log to say "async request".

Fixes: f05e26051c15 ("eal: add IPC asynchronous request")

Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
---
 lib/eal/common/eal_common_proc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/eal/common/eal_common_proc.c b/lib/eal/common/eal_common_proc.c
index 62fd4ba88f..6193249e9f 100644
--- a/lib/eal/common/eal_common_proc.c
+++ b/lib/eal/common/eal_common_proc.c
@@ -869,5 +869,5 @@ mp_request_async(const char *dst, struct rte_mp_msg *req,
 	reply_msg = calloc(1, sizeof(*reply_msg));
 	if (pending_req == NULL || reply_msg == NULL) {
-		EAL_LOG(ERR, "Could not allocate space for sync request");
+		EAL_LOG(ERR, "Could not allocate space for async request");
 		rte_errno = ENOMEM;
 		ret = -1;
-- 
2.55.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-07-28 16:54:52.955772268 +0100
+++ 0074-ipc-fix-log-message-in-async-request.patch	2026-07-28 16:54:50.832841579 +0100
@@ -1 +1 @@
-From fc32ccd591f364517500d11c77fa78d04d058194 Mon Sep 17 00:00:00 2001
+From 29b426a151071611926bc3a054f52cc224b2e59b Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit fc32ccd591f364517500d11c77fa78d04d058194 ]
+
@@ -12 +13,0 @@
-Cc: stable at dpdk.org
@@ -20 +21 @@
-index 06f151818c..799c6e81b0 100644
+index 62fd4ba88f..6193249e9f 100644
@@ -23 +24 @@
-@@ -884,5 +884,5 @@ mp_request_async(const char *dst, struct rte_mp_msg *req,
+@@ -869,5 +869,5 @@ mp_request_async(const char *dst, struct rte_mp_msg *req,



More information about the stable mailing list