Re: [dpdk-dev] [PATCH] examples/rxtx_callbacks: fix HW timestamp enable

2019-07-29 Thread Thomas Monjalon
25/07/2019 17:51, Harman Kalra: > Offloafing Rx timestamp is a device capability than queue capability. Why is it a device capability and not a queue capability? > Hence the logic to enable HW timestamp via DEV_RX_OFFLOAD_TIMESTAMP > flag should be before device configuration. > > Fixes: cd1dade

Re: [dpdk-dev] [PATCH] examples/rxtx_callbacks: fix HW timestamp enable

2019-07-27 Thread Jerin Jacob Kollanukkaran
[dpdk-dev] [PATCH] examples/rxtx_callbacks: fix HW timestamp > enable > > Offloafing Rx timestamp is a device capability than queue capability. > Hence the logic to enable HW timestamp via DEV_RX_OFFLOAD_TIMESTAMP > flag should be before device configuration. > > Fixes: cd1dadeb9b2a

[dpdk-dev] [PATCH] examples/rxtx_callbacks: fix HW timestamp enable

2019-07-25 Thread Harman Kalra
Offloafing Rx timestamp is a device capability than queue capability. Hence the logic to enable HW timestamp via DEV_RX_OFFLOAD_TIMESTAMP flag should be before device configuration. Fixes: cd1dadeb9b2a ("examples/rxtx_callbacks: support HW timestamp") Cc: barbe...@kth.se Signed-off-by: Harman Kal