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 E9E7D48BFA for ; Mon, 1 Dec 2025 15:41:29 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DAD33402F0; Mon, 1 Dec 2025 15:41:29 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id E125240268 for ; Mon, 1 Dec 2025 15:41:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1764600087; 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=IwAUVjY3RbdqkrLipSMe8Znqpqk4wLQdKuyRGtYzSug=; b=HMhrd0qGjyy0Se+u4099iGF75oFvJii3sgiy12UaqN51/PHfVb7lmhz4krCnA3BaET5SJ9 fbOgpBmv5UsfsHbxwPG2vJdTegMikLj7hgc7+L8W4UNm5Hwk08G69gVVEfJgIotPDZ93uc K+ranZKgMJVVhOUhn+Yy75MsX3i6+E8= 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-356-l1J0azytO4W7o8gLvrX2xA-1; Mon, 01 Dec 2025 09:41:24 -0500 X-MC-Unique: l1J0azytO4W7o8gLvrX2xA-1 X-Mimecast-MFC-AGG-ID: l1J0azytO4W7o8gLvrX2xA_1764600083 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 CD16D1956051; Mon, 1 Dec 2025 14:41:22 +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 2542D180047F; Mon, 1 Dec 2025 14:41:20 +0000 (UTC) From: Kevin Traynor To: Stephen Hemminger Cc: Hemant Agrawal , David Marchand , dpdk stable Subject: patch 'bus/fslmc: fix const pointer in device name parsing' has been queued to stable release 24.11.4 Date: Mon, 1 Dec 2025 14:41:01 +0000 Message-ID: <20251201144112.633118-2-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: 4W5DUeYGjjvInSYVPafoIEeXA5J29W5xasMhorfSmtI_1764600083 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 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/b57e9912220d54bb43c4e81069a11f18a2f67113 Thanks. Kevin --- >From b57e9912220d54bb43c4e81069a11f18a2f67113 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Tue, 25 Nov 2025 06:46:10 -0800 Subject: [PATCH] bus/fslmc: fix const pointer in device name parsing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ upstream commit f4ef899bb3aeca2fa195f9605ddaf7567f8b0afb ] With latest glibc (Fedora Rawhide): drivers/bus/fslmc/fslmc_bus.c: In function ‘rte_fslmc_parse’: drivers/bus/fslmc/fslmc_bus.c:298:15: error: assignment discards ‘const’ qualifier from pointer target type 298 | t_ptr = strchr(sep, '.'); | ^ Fixes: e67a61614d0b ("bus/fslmc: support device iteration") Signed-off-by: Stephen Hemminger Acked-by: Hemant Agrawal Acked-by: David Marchand --- drivers/bus/fslmc/fslmc_bus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bus/fslmc/fslmc_bus.c b/drivers/bus/fslmc/fslmc_bus.c index 68ad2b801e..3a89445262 100644 --- a/drivers/bus/fslmc/fslmc_bus.c +++ b/drivers/bus/fslmc/fslmc_bus.c @@ -239,5 +239,5 @@ rte_fslmc_parse(const char *name, void *addr) { uint16_t dev_id; - char *t_ptr; + const char *t_ptr; const char *sep; uint8_t sep_exists = 0; -- 2.51.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2025-12-01 11:18:48.669808944 +0000 +++ 0002-bus-fslmc-fix-const-pointer-in-device-name-parsing.patch 2025-12-01 11:18:48.567735501 +0000 @@ -1 +1 @@ -From f4ef899bb3aeca2fa195f9605ddaf7567f8b0afb Mon Sep 17 00:00:00 2001 +From b57e9912220d54bb43c4e81069a11f18a2f67113 Mon Sep 17 00:00:00 2001 @@ -8,0 +9,2 @@ +[ upstream commit f4ef899bb3aeca2fa195f9605ddaf7567f8b0afb ] + @@ -17 +18,0 @@ -Cc: stable@dpdk.org @@ -27 +28 @@ -index 4529ec5085..abdb0ad50d 100644 +index 68ad2b801e..3a89445262 100644 @@ -30 +31 @@ -@@ -243,5 +243,5 @@ rte_fslmc_parse(const char *name, void *addr) +@@ -239,5 +239,5 @@ rte_fslmc_parse(const char *name, void *addr)