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

luca.boccassi at gmail.com luca.boccassi at gmail.com
Mon Jul 6 12:20:31 CEST 2026


Hi,

FYI, your patch has been queued to stable release 24.11.7

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/05/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/bluca/dpdk-stable

This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/9ca74a20e3f23c76599cd4eb6d03eb7cad8991f8

Thanks.

Luca Boccassi

---
>From 9ca74a20e3f23c76599cd4eb6d03eb7cad8991f8 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 d24093937c..2e81723979 100644
--- a/lib/eal/common/eal_common_proc.c
+++ b/lib/eal/common/eal_common_proc.c
@@ -865,7 +865,7 @@ mp_request_async(const char *dst, struct rte_mp_msg *req,
 	pending_req = calloc(1, sizeof(*pending_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;
 		goto fail;
-- 
2.47.3

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-07-03 12:55:48.189107338 +0100
+++ 0039-ipc-fix-log-message-in-async-request.patch	2026-07-03 12:55:46.670573982 +0100
@@ -1 +1 @@
-From fc32ccd591f364517500d11c77fa78d04d058194 Mon Sep 17 00:00:00 2001
+From 9ca74a20e3f23c76599cd4eb6d03eb7cad8991f8 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 d24093937c..2e81723979 100644
@@ -23 +24 @@
-@@ -883,7 +883,7 @@ mp_request_async(const char *dst, struct rte_mp_msg *req,
+@@ -865,7 +865,7 @@ mp_request_async(const char *dst, struct rte_mp_msg *req,


More information about the stable mailing list