Re: [dpdk-dev] [PATCH v5 1/2] eal/ticketlock: ticket based to improve fairness

2019-03-14 Thread Joyce Kong (Arm Technology China)
works.com; Gavin Hu (Arm > Technology China) > Subject: Re: [dpdk-dev] [PATCH v5 1/2] eal/ticketlock: ticket based to improve > fairness > > On Mon, 2019-03-11 at 13:52 +0800, Joyce Kong wrote: > > The spinlock implementation is unfair, some threads may take locks > > ag

Re: [dpdk-dev] [PATCH v5 1/2] eal/ticketlock: ticket based to improve fairness

2019-03-14 Thread Joyce Kong (Arm Technology China)
works.com; Gavin Hu (Arm > Technology China) > Subject: Re: [dpdk-dev] [PATCH v5 1/2] eal/ticketlock: ticket based to improve > fairness > > On Mon, 2019-03-11 at 13:52 +0800, Joyce Kong wrote: > > The spinlock implementation is unfair, some threads may take locks > > ag

Re: [dpdk-dev] [PATCH v5 1/2] eal/ticketlock: ticket based to improve fairness

2019-03-13 Thread Jerin Jacob Kollanukkaran
On Mon, 2019-03-11 at 13:52 +0800, Joyce Kong wrote: > The spinlock implementation is unfair, some threads may take locks > aggressively while leaving the other threads starving for long time. > > This patch introduces ticketlock which gives each waiting thread a > ticket and they can take the loc

Re: [dpdk-dev] [PATCH v5 1/2] eal/ticketlock: ticket based to improve fairness

2019-03-13 Thread Jerin Jacob Kollanukkaran
On Mon, 2019-03-11 at 13:52 +0800, Joyce Kong wrote: > The spinlock implementation is unfair, some threads may take locks > aggressively while leaving the other threads starving for long time. > > This patch introduces ticketlock which gives each waiting thread a > ticket and they can take the loc

[dpdk-dev] [PATCH v5 1/2] eal/ticketlock: ticket based to improve fairness

2019-03-10 Thread Joyce Kong
The spinlock implementation is unfair, some threads may take locks aggressively while leaving the other threads starving for long time. This patch introduces ticketlock which gives each waiting thread a ticket and they can take the lock one by one. First come, first serviced. This avoids starvatio