Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
* [lttng-dev] [URCU PATCH 0/3] wait-free concurrent queues (wfcqueue)
@ 2012-10-02 14:13 Mathieu Desnoyers
  2012-10-02 14:14 ` [lttng-dev] [URCU PATCH 1/3] wfcqueue: implement concurrency-efficient queue Mathieu Desnoyers
                   ` (3 more replies)
  0 siblings, 4 replies; 21+ messages in thread
From: Mathieu Desnoyers @ 2012-10-02 14:13 UTC (permalink / raw)


Implement wait-free concurrent queues, with a new API different from
wfqueue.h, which is already provided by Userspace RCU. The advantage of
splitting the head and tail objects of the queue into different
arguments is to allow these to sit on different cache-lines, thus
eliminating false-sharing, leading to a 2.3x speed increase.

This API also introduces a "splice" operation, which moves all nodes
from one queue into another, and postpones the synchronization to either
dequeue or iteration on the list. The splice operation does not need to
touch every single node of the queue it moves them from. Moreover, the
splice operation only needs to ensure mutual exclusion with other
dequeuers, iterations, and splice operations from the list it splices
from, but acts as a simple enqueuer on the list it splices into (no
mutual exclusion needed for that list).

Feedback is welcome,

Thanks!

Mathieu

-- 
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com



^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2012-10-10  4:59 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-02 14:13 [lttng-dev] [URCU PATCH 0/3] wait-free concurrent queues (wfcqueue) Mathieu Desnoyers
2012-10-02 14:14 ` [lttng-dev] [URCU PATCH 1/3] wfcqueue: implement concurrency-efficient queue Mathieu Desnoyers
2012-10-08 15:47   ` Paolo Bonzini
2012-10-08 16:15     ` Mathieu Desnoyers
2012-10-08 16:33       ` Paolo Bonzini
2012-10-08 18:10         ` Mathieu Desnoyers
2012-10-10  2:56   ` Lai Jiangshan
2012-10-10  4:50     ` Mathieu Desnoyers
2012-10-02 14:15 ` [lttng-dev] [URCU PATCH 2/3] wfcqueue test Mathieu Desnoyers
2012-10-02 14:16 ` [lttng-dev] [URCU PATCH 3/3] call_rcu: use wfcqueue, eliminate false-sharing Mathieu Desnoyers
2012-10-08  3:09   ` Lai Jiangshan
2012-10-08 14:49     ` Mathieu Desnoyers
2012-10-08 15:10       ` Paul E. McKenney
2012-10-08 16:03         ` Mathieu Desnoyers
2012-10-03 18:28 ` [lttng-dev] [rp] [URCU PATCH 0/3] wait-free concurrent queues (wfcqueue) Paul E. McKenney
2012-10-03 21:04   ` Mathieu Desnoyers
2012-10-04 18:51     ` Paul E. McKenney
2012-10-08  3:33     ` Lai Jiangshan
2012-10-08 15:07       ` Mathieu Desnoyers
2012-10-10  2:53         ` Lai Jiangshan
2012-10-10  4:59           ` Mathieu Desnoyers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox