Re: [Qemu-devel] [PATCH 04/15] rcu: add call_rcu

2015-01-25 Thread Fam Zheng
On Thu, 01/22 15:47, Paolo Bonzini wrote: > Asynchronous callbacks provided by call_rcu are particularly important > for QEMU, because the BQL makes it hard to use synchronize_rcu. > > In addition, the current RCU implementation is not particularly friendly > to multiple concurrent synchronize_rcu

[Qemu-devel] [PATCH 04/15] rcu: add call_rcu

2015-01-22 Thread Paolo Bonzini
Asynchronous callbacks provided by call_rcu are particularly important for QEMU, because the BQL makes it hard to use synchronize_rcu. In addition, the current RCU implementation is not particularly friendly to multiple concurrent synchronize_rcu callers, making call_rcu even more important. Sign