patch 'net/tap: remove log when running without multiprocess' has been queued to stable release 25.11.1

Kevin Traynor ktraynor at redhat.com
Thu Feb 26 14:08:42 CET 2026


Hi,

FYI, your patch has been queued to stable release 25.11.1

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

Thanks.

Kevin

---
>From 5467e7fbe48fe8024a26a452b2405576c732bc4e Mon Sep 17 00:00:00 2001
From: David Marchand <david.marchand at redhat.com>
Date: Mon, 5 Jan 2026 13:36:40 +0100
Subject: [PATCH] net/tap: remove log when running without multiprocess

[ upstream commit d26d69a054012f77b535da77ee78c108646ee01c ]

In case DPDK is started with multiprocess disabled (like in OVS), there
is no reason to log an error on multiprocess aspects.

Note: the only caller of this helper does not check the return value.

Fixes: c36ce7099c21 ("net/tap: fix to populate FDs in secondary process")

Signed-off-by: David Marchand <david.marchand at redhat.com>
---
 drivers/net/tap/rte_eth_tap.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c
index 730f1859bd..7a8a98cddb 100644
--- a/drivers/net/tap/rte_eth_tap.c
+++ b/drivers/net/tap/rte_eth_tap.c
@@ -770,5 +770,5 @@ tap_link_set_up(struct rte_eth_dev *dev)
 }
 
-static int
+static void
 tap_mp_req_on_rxtx(struct rte_eth_dev *dev)
 {
@@ -792,11 +792,8 @@ tap_mp_req_on_rxtx(struct rte_eth_dev *dev)
 
 	err = rte_mp_sendmsg(&msg);
-	if (err < 0) {
+	if (err < 0 && rte_errno != ENOTSUP) {
 		TAP_LOG(ERR, "Failed to send start req to secondary %d",
 			rte_errno);
-		return -1;
 	}
-
-	return 0;
 }
 
-- 
2.53.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-02-26 10:16:48.682793028 +0000
+++ 0040-net-tap-remove-log-when-running-without-multiprocess.patch	2026-02-26 10:16:46.951459238 +0000
@@ -1 +1 @@
-From d26d69a054012f77b535da77ee78c108646ee01c Mon Sep 17 00:00:00 2001
+From 5467e7fbe48fe8024a26a452b2405576c732bc4e Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit d26d69a054012f77b535da77ee78c108646ee01c ]
+
@@ -12 +13,0 @@
-Cc: stable at dpdk.org



More information about the stable mailing list