Reviewed-by: Michael Shamis <[email protected]> -----Original Message----- From: dev <[email protected]> On Behalf Of [email protected] Sent: Wednesday, December 2, 2020 12:12 PM To: Jerin Jacob Kollanukkaran <[email protected]> Cc: [email protected]; Liron Himi <[email protected]> Subject: [dpdk-dev] [PATCH v1 28/38] net/mvpp2: propagate port-id in udata64
From: Liron Himi <[email protected]> mbuf->port can be override and used for eventdev so saving the port-id information in another field tht can be query by application Signed-off-by: Liron Himi <[email protected]> Reviewed-by: Liron Himi <[email protected]> --- drivers/net/mvpp2/mrvl_ethdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/mvpp2/mrvl_ethdev.c b/drivers/net/mvpp2/mrvl_ethdev.c index 1f9489d77..66c3c8e57 100644 --- a/drivers/net/mvpp2/mrvl_ethdev.c +++ b/drivers/net/mvpp2/mrvl_ethdev.c @@ -2693,6 +2693,7 @@ mrvl_rx_pkt_burst(void *rxq, struct rte_mbuf **rx_pkts, uint16_t nb_pkts) mbuf->l2_len = l3_offset; mbuf->l3_len = l4_offset - l3_offset; + mbuf->udata64 = q->port_id; if (likely(q->cksum_enabled)) mbuf->ol_flags = mrvl_desc_to_ol_flags(&descs[i]); -- 2.28.0

