From: Somnath Kotur Date: Tue, 6 Feb 2018 02:52:03 +0000 (+0530) Subject: net/bnxt: fix missing timestamp flag in mbuf X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=aeafacd9d79896ac36921d82aa273fbef5c34c37 net/bnxt: fix missing timestamp flag in mbuf The timestamp flag needs to be set in the offload flags for the received pkt in case of PTP offload. Fixes: b11cceb83a34 ("net/bnxt: support timesync") Signed-off-by: Somnath Kotur --- diff --git a/drivers/net/bnxt/bnxt_rxr.c b/drivers/net/bnxt/bnxt_rxr.c index 9e70c86041..6a5d8c12ce 100644 --- a/drivers/net/bnxt/bnxt_rxr.c +++ b/drivers/net/bnxt/bnxt_rxr.c @@ -459,7 +459,7 @@ static int bnxt_rx_pkt(struct rte_mbuf **rx_pkt, if ((rxcmp->flags_type & rte_cpu_to_le_16(RX_PKT_CMPL_FLAGS_MASK)) == RX_PKT_CMPL_FLAGS_ITYPE_PTP_W_TIMESTAMP) - mbuf->ol_flags |= PKT_RX_IEEE1588_PTP; + mbuf->ol_flags |= PKT_RX_IEEE1588_PTP | PKT_RX_IEEE1588_TMST; if (agg_buf) bnxt_rx_pages(rxq, mbuf, &tmp_raw_cons, agg_buf);