patches for DPDK stable branches
 help / color / mirror / Atom feed
* [PATCH 1/2] net/mlx4: fix unnecessary comma compilation warnings
@ 2025-10-29  9:55 Gregory Etelson
  2025-10-29  9:55 ` [PATCH 2/2] net/mlx5: " Gregory Etelson
  2025-10-29 13:25 ` [PATCH 1/2] net/mlx4: " Dariusz Sosnowski
  0 siblings, 2 replies; 4+ messages in thread
From: Gregory Etelson @ 2025-10-29  9:55 UTC (permalink / raw)
  To: dev
  Cc: getelson, mkashani, rasland, stable, Matan Azrad,
	Viacheslav Ovsiienko, Moti Haimovsky

The patch fixes compilation warnings produced by clang -Wcomma option.

Bugzilla ID: 1810
Fixes: ba576975a89b ("net/mlx4: support hardware TSO")
Cc: stable@dpdk.org

Signed-off-by: Gregory Etelson <getelson@nvidia.com>
---
 drivers/net/mlx4/mlx4_rxtx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/mlx4/mlx4_rxtx.c b/drivers/net/mlx4/mlx4_rxtx.c
index 947cae491c..a4df6f7bcb 100644
--- a/drivers/net/mlx4/mlx4_rxtx.c
+++ b/drivers/net/mlx4/mlx4_rxtx.c
@@ -638,7 +638,7 @@ mlx4_tx_burst_fill_tso_hdr(struct rte_mbuf *buf,
 			thdr.vto = sq->buf;
 		/* New TXBB, stash the first 32bits for later use. */
 		pv[*pv_counter].dst = (volatile uint32_t *)thdr.to;
-		pv[(*pv_counter)++].val = *(uint32_t *)from,
+		pv[(*pv_counter)++].val = *(uint32_t *)from;
 		from += sizeof(uint32_t);
 		thdr.to += sizeof(uint32_t);
 		remain_size -= txbb_avail_space + sizeof(uint32_t);
-- 
2.51.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-10-29 13:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-29  9:55 [PATCH 1/2] net/mlx4: fix unnecessary comma compilation warnings Gregory Etelson
2025-10-29  9:55 ` [PATCH 2/2] net/mlx5: " Gregory Etelson
2025-10-29 13:29   ` Dariusz Sosnowski
2025-10-29 13:25 ` [PATCH 1/2] net/mlx4: " Dariusz Sosnowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).