DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 1/3] mlx4: fix missing ol_flags in scattered RX function
@ 2015-10-05 17:50 Adrien Mazarguil
  2015-10-05 17:50 ` [dpdk-dev] [PATCH 2/3] mlx4: fill if_index field in dev_info structure Adrien Mazarguil
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Adrien Mazarguil @ 2015-10-05 17:50 UTC (permalink / raw)
  To: dev

They were dropped by mistake in the commit below.

Fixes: ab351fe1c95c ("mbuf: remove packet type from offload flags")

Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
---
 drivers/net/mlx4/mlx4.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/mlx4/mlx4.c b/drivers/net/mlx4/mlx4.c
index 2f49ed5..e1ca577 100644
--- a/drivers/net/mlx4/mlx4.c
+++ b/drivers/net/mlx4/mlx4.c
@@ -2735,6 +2735,7 @@ mlx4_rx_burst_sp(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
 		PORT(pkt_buf) = rxq->port_id;
 		PKT_LEN(pkt_buf) = pkt_buf_len;
 		pkt_buf->packet_type = rxq_cq_to_pkt_type(flags);
+		pkt_buf->ol_flags = rxq_cq_to_ol_flags(rxq, flags);
 
 		/* Return packet. */
 		*(pkts++) = pkt_buf;
-- 
2.1.0

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

end of thread, other threads:[~2015-10-20 20:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-05 17:50 [dpdk-dev] [PATCH 1/3] mlx4: fix missing ol_flags in scattered RX function Adrien Mazarguil
2015-10-05 17:50 ` [dpdk-dev] [PATCH 2/3] mlx4: fill if_index field in dev_info structure Adrien Mazarguil
2015-10-05 17:50 ` [dpdk-dev] [PATCH 3/3] mlx4: do not expose broadcast address in MAC list Adrien Mazarguil
2015-10-20 19:59 ` [dpdk-dev] [PATCH 1/3] mlx4: fix missing ol_flags in scattered RX function Thomas Monjalon

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).