Re: [Qemu-devel] [PATCH 02/18] aio: rename bh_lock to list_lock

2015-09-28 Thread Stefan Hajnoczi
On Thu, Aug 06, 2015 at 03:36:00PM +0200, Paolo Bonzini wrote: > This will be used for AioHandlers too. There is going to be little > or no contention, so it is better to reuse the same lock. > > Signed-off-by: Paolo Bonzini > --- > async.c | 16 > include/block/aio

Re: [Qemu-devel] [PATCH 02/18] aio: rename bh_lock to list_lock

2015-09-08 Thread Fam Zheng
On Thu, 08/06 15:36, Paolo Bonzini wrote: > This will be used for AioHandlers too. There is going to be little > or no contention, so it is better to reuse the same lock. > > Signed-off-by: Paolo Bonzini Reviewed-by: Fam Zheng > --- > async.c | 16 > include/bloc

[Qemu-devel] [PATCH 02/18] aio: rename bh_lock to list_lock

2015-08-06 Thread Paolo Bonzini
This will be used for AioHandlers too. There is going to be little or no contention, so it is better to reuse the same lock. Signed-off-by: Paolo Bonzini --- async.c | 16 include/block/aio.h | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/as