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> > +#include <rte_atomic.h> Please sort this in alphabetical order. >