> -----Original Message----- > From: Jerin Jacob Kollanukkaran <jer...@marvell.com> > Sent: Wednesday, March 13, 2019 9:31 PM > To: Joyce Kong (Arm Technology China) <joyce.k...@arm.com>; > dev@dpdk.org > Cc: step...@networkplumber.org; Honnappa Nagarahalli > <honnappa.nagaraha...@arm.com>; tho...@monjalon.net; nd > <n...@arm.com>; jerin.ja...@caviumnetworks.com; Gavin Hu (Arm > Technology China) <gavin...@arm.com> > 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 <joyce.k...@arm.com> > > Reviewed-by: Gavin Hu <gavin...@arm.com> > > Reviewed-by: Phil Yang <phil.y...@arm.com> > > --- > > 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.