patch 'net/axgbe: fix comma operator misuse' has been queued to stable release 24.11.7

luca.boccassi at gmail.com luca.boccassi at gmail.com
Thu Jun 11 15:19:22 CEST 2026


Hi,

FYI, your patch has been queued to stable release 24.11.7

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

This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/554c55fa512b08e5eba39240edb2d5d535d93216

Thanks.

Luca Boccassi

---
>From 554c55fa512b08e5eba39240edb2d5d535d93216 Mon Sep 17 00:00:00 2001
From: Stephen Hemminger <stephen at networkplumber.org>
Date: Wed, 8 Apr 2026 10:08:39 -0700
Subject: [PATCH] net/axgbe: fix comma operator misuse

[ upstream commit 801061aa3de0873f83160e5717fddbc37b50c562 ]

The driver only had one trvial place where comma operator
was used in a way that caused warning.

Fixes: a27ff9cac18c ("net/axgbe: identify CPU with cpuid")

Signed-off-by: Stephen Hemminger <stephen at networkplumber.org>
---
 drivers/net/axgbe/axgbe_ethdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/axgbe/axgbe_ethdev.c b/drivers/net/axgbe/axgbe_ethdev.c
index 526d14b69a..536e4ee7f8 100644
--- a/drivers/net/axgbe/axgbe_ethdev.c
+++ b/drivers/net/axgbe/axgbe_ethdev.c
@@ -2248,7 +2248,7 @@ eth_axgbe_dev_init(struct rte_eth_dev *eth_dev)
 		edx == CPUID_VENDOR_AuthenticAMD_edx &&
 		ecx == CPUID_VENDOR_AuthenticAMD_ecx) {
 		int unknown_cpu = 0;
-		eax = 0, ebx = 0, ecx = 0, edx = 0;
+		eax = 0; ebx = 0; ecx = 0; edx = 0;
 
 		__cpuid(0x1, eax, ebx, ecx, edx);
 
-- 
2.47.3

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-06-11 14:20:01.894384746 +0100
+++ 0013-net-axgbe-fix-comma-operator-misuse.patch	2026-06-11 14:20:01.178745107 +0100
@@ -1 +1 @@
-From 801061aa3de0873f83160e5717fddbc37b50c562 Mon Sep 17 00:00:00 2001
+From 554c55fa512b08e5eba39240edb2d5d535d93216 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 801061aa3de0873f83160e5717fddbc37b50c562 ]
+
@@ -10 +11,0 @@
-Cc: stable at dpdk.org
@@ -15,2 +16 @@
- drivers/net/axgbe/meson.build    | 1 -
- 2 files changed, 1 insertion(+), 2 deletions(-)
+ 1 file changed, 1 insertion(+), 1 deletion(-)
@@ -19 +19 @@
-index cfcd880961..2d1d88b956 100644
+index 526d14b69a..536e4ee7f8 100644
@@ -22,3 +22,3 @@
-@@ -2256,7 +2256,7 @@ eth_axgbe_dev_init(struct rte_eth_dev *eth_dev)
- 	    edx == CPUID_VENDOR_AuthenticAMD_edx &&
- 	    ecx == CPUID_VENDOR_AuthenticAMD_ecx) {
+@@ -2248,7 +2248,7 @@ eth_axgbe_dev_init(struct rte_eth_dev *eth_dev)
+ 		edx == CPUID_VENDOR_AuthenticAMD_edx &&
+ 		ecx == CPUID_VENDOR_AuthenticAMD_ecx) {
@@ -31,12 +30,0 @@
-diff --git a/drivers/net/axgbe/meson.build b/drivers/net/axgbe/meson.build
-index 1aa523a749..8bc3e50124 100644
---- a/drivers/net/axgbe/meson.build
-+++ b/drivers/net/axgbe/meson.build
-@@ -17,7 +17,6 @@ sources = files(
- 
- cflags += ['-Wno-cast-qual']
- cflags += no_shadow_cflag
--cflags += no_comma_cflag
- 
- if arch_subdir == 'x86'
-     sources += files('axgbe_rxtx_vec_sse.c')


More information about the stable mailing list