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 B995748B69 for ; Fri, 21 Nov 2025 12:22:04 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B1224402D7; Fri, 21 Nov 2025 12:22:04 +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 D420A402D7 for ; Fri, 21 Nov 2025 12:22:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1763724123; 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=hNBmKiSv7JjYJLFAg7rt90MWGzmci7WEyVAD+vlauF0=; b=BM+GnFS/GgR1cOaj37GzAbygH6/oXd0bxTFat10hN++MKE0VlSN9gL1sNrqhtPvcn1mFa9 ofLt+p6HNbJsN5ZzWjXY73j3kKc5CgFBw4iBJEsd/76YBMD2AGfXbpgiPk8JaeGwMn/oDn B+TwufLmZTt7EkORxWtMcFKwRLtlwOo= 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-577-vsUiwxCMOL2lkOyuNdVcUg-1; Fri, 21 Nov 2025 06:21:59 -0500 X-MC-Unique: vsUiwxCMOL2lkOyuNdVcUg-1 X-Mimecast-MFC-AGG-ID: vsUiwxCMOL2lkOyuNdVcUg_1763724118 Received: from mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.4]) (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 443201800673; Fri, 21 Nov 2025 11:21:58 +0000 (UTC) Received: from rh.redhat.com (unknown [10.42.28.165]) by mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id B14A530044DB; Fri, 21 Nov 2025 11:21:56 +0000 (UTC) From: Kevin Traynor To: Stephen Hemminger Cc: Chengwen Feng , dpdk stable Subject: patch 'dmadev: fix debug build with tracepoints' has been queued to stable release 24.11.4 Date: Fri, 21 Nov 2025 11:19:46 +0000 Message-ID: <20251121112128.485623-2-ktraynor@redhat.com> In-Reply-To: <20251121112128.485623-1-ktraynor@redhat.com> References: <20251121112128.485623-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.4 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: 0FmLZgP5eZXZU8McxA3F3ki5qhc491cInuokTk-06xM_1763724118 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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/26/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/e04a5118f3eb538b953a691c12e7fa5c50820335 Thanks. Kevin --- >From e04a5118f3eb538b953a691c12e7fa5c50820335 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Mon, 27 Oct 2025 09:46:20 -0700 Subject: [PATCH] dmadev: fix debug build with tracepoints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ upstream commit 1624f34dde105a47e1d22f419a90fd65997c908f ] Missing definition of errnos causes build failure: In file included from ../lib/dmadev/rte_dmadev_trace.h:16, from ../lib/dmadev/rte_dmadev_trace_points.c:8: ../lib/dmadev/rte_dmadev.h: In function ‘rte_dma_copy’: ../lib/dmadev/rte_dmadev.h:1183:25: error: ‘EINVAL’ undeclared (first use in this function) 1183 | return -EINVAL; | ^~~~~~ Bugzilla ID: 1814 Fixes: 91e581e5c924 ("dmadev: add data plane API") Signed-off-by: Stephen Hemminger Acked-by: Chengwen Feng --- lib/dmadev/rte_dmadev.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/dmadev/rte_dmadev.h b/lib/dmadev/rte_dmadev.h index 2f9304a9db..e2c861530c 100644 --- a/lib/dmadev/rte_dmadev.h +++ b/lib/dmadev/rte_dmadev.h @@ -146,4 +146,5 @@ #include +#include #include -- 2.51.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2025-11-21 11:05:09.723358790 +0000 +++ 0002-dmadev-fix-debug-build-with-tracepoints.patch 2025-11-21 11:05:09.356200713 +0000 @@ -1 +1 @@ -From 1624f34dde105a47e1d22f419a90fd65997c908f Mon Sep 17 00:00:00 2001 +From e04a5118f3eb538b953a691c12e7fa5c50820335 Mon Sep 17 00:00:00 2001 @@ -8,0 +9,2 @@ +[ upstream commit 1624f34dde105a47e1d22f419a90fd65997c908f ] + @@ -21 +22,0 @@ -Cc: stable@dpdk.org @@ -30 +31 @@ -index 0f4f10ec12..e3d7c9d0ca 100644 +index 2f9304a9db..e2c861530c 100644