> -----Original Message----- > From: Jerin Jacob Kollanukkaran <[email protected]> > Sent: Wednesday, March 13, 2019 9:31 PM > To: Joyce Kong (Arm Technology China) <[email protected]>; > [email protected] > Cc: [email protected]; Honnappa Nagarahalli > <[email protected]>; [email protected]; nd > <[email protected]>; [email protected]; Gavin Hu (Arm > Technology China) <[email protected]> > Subject: Re: [dpdk-dev] [PATCH v5 2/2] test/ticketlock: add ticket lock test > case > > On Mon, 2019-03-11 at 13:52 +0800, Joyce Kong wrote: > > Add test cases for ticket lock, recursive ticket lock, and ticket lock > > performance. > > > > Signed-off-by: Joyce Kong <[email protected]> > > Reviewed-by: Gavin Hu <[email protected]> > > Reviewed-by: Phil Yang <[email protected]> > > --- > > index 0000000..dfa818c > > --- /dev/null > > +++ b/app/test/test_ticketlock.c > > @@ -0,0 +1,311 @@ > > +/* SPDX-License-Identifier: BSD-3-Clause > > + * Copyright(c) 2018-2019 Arm Limited */ > > + > > +#include <stdio.h> > > +#include <stdint.h> > > +#include <inttypes.h> > > +#include <string.h> > > +#include <unistd.h> > > +#include <sys/queue.h> > > + > > +#include <rte_common.h> > > +#include <rte_memory.h> > > +#include <rte_per_lcore.h> > > +#include <rte_launch.h> > > +#include <rte_eal.h> > > +#include <rte_lcore.h> > > +#include <rte_cycles.h> > > +#include <generic/rte_ticketlock.h> > > it should be just <rte_ticketlock.h> >
Change this to <rte_ticketlock.h> by adding a new rte_ticketlock.h file in lib/librte_eal/common/include/arch/arm in V6. > > +#include <rte_atomic.h> > > Please sort this in alphabetical order. > Do this in v6.

