From 7a04a4f67dcafe4fb5232985d9f63d507334632b Mon Sep 17 00:00:00 2001 From: Hemant Agrawal Date: Tue, 23 Feb 2021 11:44:12 +0530 Subject: [PATCH] examples/ptpclient: enable Rx timestamp offload This patch add support to enable Rx offload for timestamp. It is required to be enabled for some PMDs e.g. dpaa2. Signed-off-by: Gagandeep Singh Signed-off-by: Hemant Agrawal Acked-by: Kirill Rybalchenko --- examples/ptpclient/ptpclient.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/ptpclient/ptpclient.c b/examples/ptpclient/ptpclient.c index 09968cdfc7..33b297e37a 100644 --- a/examples/ptpclient/ptpclient.c +++ b/examples/ptpclient/ptpclient.c @@ -197,6 +197,9 @@ port_init(uint16_t port, struct rte_mempool *mbuf_pool) return retval; } + if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TIMESTAMP) + port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_TIMESTAMP; + if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MBUF_FAST_FREE) port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MBUF_FAST_FREE; -- 2.20.1