Re: [PATCH v5 2/2] lockable: replaced locks with lock guard macros where appropriate

2020-04-14 Thread Paolo Bonzini
On 14/04/20 10:03, Markus Armbruster wrote: > Paolo Bonzini writes: > >> On 11/04/20 13:19, Daniel Brodsky wrote: >>> Just making sure this patch didn't get lost. >>> ping http://patchwork.ozlabs.org/patch/1266336/ >> >> The patch looks good, but it will be included in QEMU only after 5.0 is >>

Re: [PATCH v5 2/2] lockable: replaced locks with lock guard macros where appropriate

2020-04-14 Thread Markus Armbruster
Paolo Bonzini writes: > On 11/04/20 13:19, Daniel Brodsky wrote: >> Just making sure this patch didn't get lost. >> ping http://patchwork.ozlabs.org/patch/1266336/ > > The patch looks good, but it will be included in QEMU only after 5.0 is > released. Can we queue it for 5.1 right away?

Re: [PATCH v5 2/2] lockable: replaced locks with lock guard macros where appropriate

2020-04-11 Thread Paolo Bonzini
On 11/04/20 13:19, Daniel Brodsky wrote: > Just making sure this patch didn't get lost. > ping http://patchwork.ozlabs.org/patch/1266336/ The patch looks good, but it will be included in QEMU only after 5.0 is released. Thanks, Paolo

Re: [PATCH v5 2/2] lockable: replaced locks with lock guard macros where appropriate

2020-04-11 Thread Daniel Brodsky
On Fri, Apr 3, 2020 at 9:21 PM wrote: > > From: Daniel Brodsky > > - ran regexp "qemu_mutex_lock\(.*\).*\n.*if" to find targets > - replaced result with QEMU_LOCK_GUARD if all unlocks at function end > - replaced result with WITH_QEMU_LOCK_GUARD if unlock not at end > > Signed-off-by: Daniel

Re: [PATCH v5 2/2] lockable: replaced locks with lock guard macros where appropriate

2020-04-06 Thread Juan Quintela
dnbrd...@gmail.com wrote: > From: Daniel Brodsky > > - ran regexp "qemu_mutex_lock\(.*\).*\n.*if" to find targets > - replaced result with QEMU_LOCK_GUARD if all unlocks at function end > - replaced result with WITH_QEMU_LOCK_GUARD if unlock not at end > > Signed-off-by: Daniel Brodsky

[PATCH v5 2/2] lockable: replaced locks with lock guard macros where appropriate

2020-04-03 Thread dnbrdsky
From: Daniel Brodsky - ran regexp "qemu_mutex_lock\(.*\).*\n.*if" to find targets - replaced result with QEMU_LOCK_GUARD if all unlocks at function end - replaced result with WITH_QEMU_LOCK_GUARD if unlock not at end Signed-off-by: Daniel Brodsky --- block/iscsi.c | 7 ++