Re: [dpdk-dev] [PATCH v4 04/16] net/ark: switch Rx timestamp to dynamic mbuf field

2020-11-03 Thread Thomas Monjalon
03/11/2020 13:37, Andrew Rybchenko: > On 11/3/20 3:21 PM, Thomas Monjalon wrote: > > --- a/drivers/net/ark/ark_ethdev.c > > +++ b/drivers/net/ark/ark_ethdev.c > > +uint64_t ark_timestamp_rx_dynflag; > > +int ark_timestamp_dynfield_offset = -1; > > int rte_pmd_ark_rx_userdata_dynfield_offset = -1;

Re: [dpdk-dev] [PATCH v4 04/16] net/ark: switch Rx timestamp to dynamic mbuf field

2020-11-03 Thread Andrew Rybchenko
On 11/3/20 3:21 PM, Thomas Monjalon wrote: > The mbuf timestamp is moved to a dynamic field > in order to allow removal of the deprecated static field. > The related dynamic mbuf flag is set, although was missing previously. > > The timestamp is set if configured for at least one device. > > Sign

[dpdk-dev] [PATCH v4 04/16] net/ark: switch Rx timestamp to dynamic mbuf field

2020-11-03 Thread Thomas Monjalon
The mbuf timestamp is moved to a dynamic field in order to allow removal of the deprecated static field. The related dynamic mbuf flag is set, although was missing previously. The timestamp is set if configured for at least one device. Signed-off-by: Thomas Monjalon Acked-by: David Marchand ---