Re: [Qemu-devel] [PATCH 14/16] cpus-common: Introduce async_safe_run_on_cpu()

2016-09-26 Thread Alex Bennée
Paolo Bonzini writes: > Signed-off-by: Paolo Bonzini Reviewed-by: Alex Bennée > --- > cpus-common.c | 33 +++-- > include/qom/cpu.h | 14 ++ > 2 files changed, 45 insertions(+), 2 deletions(-) > > diff --git a/cpus-common.c b/cpus-common.c > index

Re: [Qemu-devel] [PATCH 14/16] cpus-common: Introduce async_safe_run_on_cpu()

2016-09-23 Thread Richard Henderson
On 09/23/2016 12:31 AM, Paolo Bonzini wrote: Signed-off-by: Paolo Bonzini --- cpus-common.c | 33 +++-- include/qom/cpu.h | 14 ++ 2 files changed, 45 insertions(+), 2 deletions(-) Reviewed-by: Richard Henderson r~

[Qemu-devel] [PATCH 14/16] cpus-common: Introduce async_safe_run_on_cpu()

2016-09-23 Thread Paolo Bonzini
Signed-off-by: Paolo Bonzini --- cpus-common.c | 33 +++-- include/qom/cpu.h | 14 ++ 2 files changed, 45 insertions(+), 2 deletions(-) diff --git a/cpus-common.c b/cpus-common.c index 429652c..38b1d55 100644 --- a/cpus-common.c +++ b/cpus-common.c @@

Re: [Qemu-devel] [PATCH 14/16] cpus-common: Introduce async_safe_run_on_cpu()

2016-09-21 Thread Paolo Bonzini
On 21/09/2016 18:08, Emilio G. Cota wrote: > On Mon, Sep 19, 2016 at 14:50:57 +0200, Paolo Bonzini wrote: >> We have to run safe work items outside the BQL; for now keep other >> work items within the BQL, though this can be changed relatively >> easily as a follow-up. >> >> Signed-off-by: Paolo

Re: [Qemu-devel] [PATCH 14/16] cpus-common: Introduce async_safe_run_on_cpu()

2016-09-21 Thread Emilio G. Cota
On Mon, Sep 19, 2016 at 14:50:57 +0200, Paolo Bonzini wrote: > We have to run safe work items outside the BQL; for now keep other > work items within the BQL, though this can be changed relatively > easily as a follow-up. > > Signed-off-by: Paolo Bonzini > --- > cpus-common.c | 33 ++

[Qemu-devel] [PATCH 14/16] cpus-common: Introduce async_safe_run_on_cpu()

2016-09-19 Thread Paolo Bonzini
We have to run safe work items outside the BQL; for now keep other work items within the BQL, though this can be changed relatively easily as a follow-up. Signed-off-by: Paolo Bonzini --- cpus-common.c | 33 +++-- include/qom/cpu.h | 14 ++ 2 files cha

[Qemu-devel] [PATCH 14/16] cpus-common: Introduce async_safe_run_on_cpu()

2016-09-12 Thread Paolo Bonzini
Signed-off-by: Paolo Bonzini --- cpus-common.c | 25 +++-- include/qom/cpu.h | 11 +++ 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/cpus-common.c b/cpus-common.c index 12c8e69..50a92dd 100644 --- a/cpus-common.c +++ b/cpus-common.c @@ -106,7 +106