patch 'net/bnxt: fix commas instead of semicolons' has been queued to stable release 25.11.1
Kevin Traynor
ktraynor at redhat.com
Thu Mar 19 11:02:18 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/23/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/66197f8155159475b586eac758eee3b153ebe30f
Thanks.
Kevin
---
>From 66197f8155159475b586eac758eee3b153ebe30f Mon Sep 17 00:00:00 2001
From: Keegan Freyhof <keegan.freyhof at broadcom.com>
Date: Fri, 27 Feb 2026 13:00:19 -0700
Subject: [PATCH] net/bnxt: fix commas instead of semicolons
[ upstream commit e99612b26f6be4324ba0af372964d883789d9345 ]
Fix compile warnings seen when using clang with the -Wcomma flag
in the bnxt ULP driver code by replacing commas with semicolons.
Bugzilla ID: 1807
Fixes: dd0191d5e70d ("net/bnxt/tf_ulp: support Thor2 ULP layer")
Signed-off-by: Keegan Freyhof <keegan.freyhof at broadcom.com>
Signed-off-by: Mohammad Shuab Siddique <mohammad-shuab.siddique at broadcom.com>
Acked-by: Kishore Padmanabha <kishore.padmanabha at broadcom.com>
---
.mailmap | 2 ++
drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c | 8 ++++----
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/.mailmap b/.mailmap
index 4ac0deebf8..0a136fe444 100644
--- a/.mailmap
+++ b/.mailmap
@@ -841,4 +841,5 @@ Kazatsker Kirill <kirill.kazatsker at intel.com>
Ke Xu <ke1.xu at intel.com>
Ke Zhang <ke1x.zhang at intel.com>
+Keegan Freyhof <keegan.freyhof at broadcom.com>
Kefu Chai <tchaikov at gmail.com>
Keiichi Watanabe <keiichiw at chromium.org>
@@ -1113,4 +1114,5 @@ Mohamed Feroz Abdul Majeeth <mabdulmajeet at marvell.com>
Mohammad Abdul Awal <mohammad.abdul.awal at intel.com>
Mohammad Iqbal Ahmad <mahmad at marvell.com>
+Mohammad Shuab Siddique <mohammad-shuab.siddique at broadcom.com>
Mohammed Gamal <mgamal at redhat.com>
Mohand Alrasheed <mrasheed at wirefilter.com>
diff --git a/drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c b/drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c
index 38cb5c8b31..bc347de202 100644
--- a/drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c
+++ b/drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c
@@ -1297,8 +1297,8 @@ ulp_tf_global_cfg_update(struct bnxt *bp,
/* Initialize the params */
- parms.dir = dir,
- parms.type = type,
- parms.offset = offset,
- parms.config = (uint8_t *)&global_cfg,
+ parms.dir = dir;
+ parms.type = type;
+ parms.offset = offset;
+ parms.config = (uint8_t *)&global_cfg;
parms.config_sz_in_bytes = sizeof(global_cfg);
--
2.53.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-03-19 10:01:07.719609628 +0000
+++ 0020-net-bnxt-fix-commas-instead-of-semicolons.patch 2026-03-19 10:01:07.079331263 +0000
@@ -1 +1 @@
-From e99612b26f6be4324ba0af372964d883789d9345 Mon Sep 17 00:00:00 2001
+From 66197f8155159475b586eac758eee3b153ebe30f Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit e99612b26f6be4324ba0af372964d883789d9345 ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
@@ -22 +23 @@
-index 0a02a23fe4..accbb29827 100644
+index 4ac0deebf8..0a136fe444 100644
@@ -25 +26 @@
-@@ -842,4 +842,5 @@ Kazatsker Kirill <kirill.kazatsker at intel.com>
+@@ -841,4 +841,5 @@ Kazatsker Kirill <kirill.kazatsker at intel.com>
@@ -31 +32 @@
-@@ -1114,4 +1115,5 @@ Mohamed Feroz Abdul Majeeth <mabdulmajeet at marvell.com>
+@@ -1113,4 +1114,5 @@ Mohamed Feroz Abdul Majeeth <mabdulmajeet at marvell.com>
More information about the stable
mailing list