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 A812948BFA for ; Mon, 1 Dec 2025 15:41:28 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9EDED4021F; Mon, 1 Dec 2025 15:41:28 +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 05AD14021F for ; Mon, 1 Dec 2025 15:41:26 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1764600086; 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=+HS1rp8IoEfLUv/DE7x6MOnE/8TCnk9I3dUzb4XhBq4=; b=Ls8hUQxmBBIcOCqFMvcwv3EBDISqTmbyAGRgH/QsJRutbu9ONRk0t8LAhbXvZKDfPRpNLs /jhTFpSSLVD9FwFuViSBhcWST98Upn8kDejAh4SEkRBvvn2vmBbOARo0CwTfXs3p3X7BgQ PolPq70OKZEQwRvH9eBpUK/bTzr4Xjg= Received: from mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-653-MouNu-7jOBeMxA5Vl5xyWQ-1; Mon, 01 Dec 2025 09:41:25 -0500 X-MC-Unique: MouNu-7jOBeMxA5Vl5xyWQ-1 X-Mimecast-MFC-AGG-ID: MouNu-7jOBeMxA5Vl5xyWQ_1764600084 Received: from mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.111]) (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-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 4B22B19560AD for ; Mon, 1 Dec 2025 14:41:24 +0000 (UTC) Received: from rh.redhat.com (unknown [10.42.28.204]) by mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 43B47180047F; Mon, 1 Dec 2025 14:41:23 +0000 (UTC) From: Kevin Traynor To: David Marchand Cc: dpdk stable Subject: patch 'bus/ifpga: fix const pointer in device name parsing' has been queued to stable release 24.11.4 Date: Mon, 1 Dec 2025 14:41:02 +0000 Message-ID: <20251201144112.633118-3-ktraynor@redhat.com> In-Reply-To: <20251201144112.633118-1-ktraynor@redhat.com> References: <20251201144112.633118-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.111 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: C3QsKj3gLbyPS1JHV_OeBF3AeiWrTZJ6j6Ejt4H9i2M_1764600084 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit content-type: text/plain; charset="US-ASCII"; x-default=true 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 12/03/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/15bdd390c1c6274af76e4335c097720c43299c03 Thanks. Kevin --- >From 15bdd390c1c6274af76e4335c097720c43299c03 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Fri, 28 Nov 2025 14:56:09 +0100 Subject: [PATCH] bus/ifpga: fix const pointer in device name parsing [ upstream commit c70b359f3734dfc6bb35ec6a6c73f2540d1e66c0 ] With latest glibc (Fedora Rawhide): ../drivers/bus/ifpga/ifpga_bus.c: In function 'ifpga_parse': ../drivers/bus/ifpga/ifpga_bus.c:479:12: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 479 | c1 = strchr(name, '|'); | ^ Fixes: 05fa3d4a6539 ("bus/ifpga: add Intel FPGA bus library") Signed-off-by: David Marchand --- drivers/bus/ifpga/ifpga_bus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/bus/ifpga/ifpga_bus.c b/drivers/bus/ifpga/ifpga_bus.c index 11b31eee4f..bf90d1f707 100644 --- a/drivers/bus/ifpga/ifpga_bus.c +++ b/drivers/bus/ifpga/ifpga_bus.c @@ -465,6 +465,6 @@ ifpga_parse(const char *name, void *addr) struct rte_rawdev *rawdev = NULL; char rawdev_name[RTE_RAWDEV_NAME_MAX_LEN]; - char *c1 = NULL; - char *c2 = NULL; + const char *c1 = NULL; + const char *c2 = NULL; int port = IFPGA_BUS_DEV_PORT_MAX; char str_port[8]; -- 2.51.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2025-12-01 11:18:48.708519809 +0000 +++ 0003-bus-ifpga-fix-const-pointer-in-device-name-parsing.patch 2025-12-01 11:18:48.568735503 +0000 @@ -1 +1 @@ -From c70b359f3734dfc6bb35ec6a6c73f2540d1e66c0 Mon Sep 17 00:00:00 2001 +From 15bdd390c1c6274af76e4335c097720c43299c03 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit c70b359f3734dfc6bb35ec6a6c73f2540d1e66c0 ] + @@ -14 +15,0 @@ -Cc: stable@dpdk.org @@ -22 +23 @@ -index ca9e49f548..fdce1f6b1f 100644 +index 11b31eee4f..bf90d1f707 100644 @@ -25 +26 @@ -@@ -469,6 +469,6 @@ ifpga_parse(const char *name, void *addr) +@@ -465,6 +465,6 @@ ifpga_parse(const char *name, void *addr)