From 08c192054bc72b78312a069e30a5539d9cf5ab7c Mon Sep 17 00:00:00 2001 From: Adrien Mazarguil Date: Mon, 5 Oct 2015 19:50:06 +0200 Subject: [PATCH] mlx4: fix missing offload flags in scattered Rx They were dropped by mistake in the commit below. Fixes: ab351fe1c95c ("mbuf: remove packet type from offload flags") Signed-off-by: Adrien Mazarguil --- 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 2f49ed5742..e1ca577453 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.20.1