* Subject: [PATCH] net/memif: Fix memif-tx buffer flags handling
@ 2025-01-06 19:46 Mike Bly
0 siblings, 0 replies; only message in thread
From: Mike Bly @ 2025-01-06 19:46 UTC (permalink / raw)
To: dev; +Cc: stable, jgrajcia
[-- Attachment #1: Type: text/plain, Size: 1312 bytes --]
Added missing initialization of memif flags field per memif buffer
Bugzilla ID: 1609
Fixes: 09c7e63a71f9 ("net/memif: introduce memory interface PMD")
Cc: stable@dpdk.org
Cc: Jakub Grajciar <jgrajcia@cisco.com>
Signed-off-by: Mike Bly <bly454@gmail.com>
---
drivers/net/memif/rte_eth_memif.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/net/memif/rte_eth_memif.c
b/drivers/net/memif/rte_eth_memif.c
index bef1606550..63bb72428d 100644
--- a/drivers/net/memif/rte_eth_memif.c
+++ b/drivers/net/memif/rte_eth_memif.c
@@ -712,6 +712,7 @@ eth_memif_tx(void *queue, struct rte_mbuf **bufs,
uint16_t nb_pkts)
next_in_chain1:
d0 = &ring->desc[slot & mask];
cp_len = rte_pktmbuf_data_len(mbuf);
+ d0->flags = 0;
rte_memcpy((uint8_t
*)memif_get_buffer(proc_private, d0),
rte_pktmbuf_mtod(mbuf, void *), cp_len);
@@ -747,6 +748,7 @@ eth_memif_tx(void *queue, struct rte_mbuf **bufs,
uint16_t nb_pkts)
dst_off = 0;
dst_len = (type == MEMIF_RING_C2S) ?
pmd->run.pkt_buffer_size : d0->length;
+ d0->flags = 0;
next_in_chain2:
src_off = 0;
--
2.43.5
[-- Attachment #2: Type: text/html, Size: 1759 bytes --]
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-01-07 10:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-06 19:46 Subject: [PATCH] net/memif: Fix memif-tx buffer flags handling Mike Bly
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).