Re: [Qemu-devel] [RFC 01/48] cpu: introduce run_on_cpu_no_bql

2018-11-14 Thread Alex Bennée
Emilio G. Cota writes: > On Wed, Nov 14, 2018 at 11:30:19 +, Alex Bennée wrote: >> >> Emilio G. Cota writes: >> >> > This allows us to queue synchronous CPU work without the BQL. >> > >> > Will gain a user soon. >> >> This is also in the cpu-lock series right? > > No, in the cpu-lock serie

Re: [Qemu-devel] [RFC 01/48] cpu: introduce run_on_cpu_no_bql

2018-11-14 Thread Emilio G. Cota
On Wed, Nov 14, 2018 at 11:30:19 +, Alex Bennée wrote: > > Emilio G. Cota writes: > > > This allows us to queue synchronous CPU work without the BQL. > > > > Will gain a user soon. > > This is also in the cpu-lock series right? No, in the cpu-lock series we add async_run_on_cpu_no_bql; her

Re: [Qemu-devel] [RFC 01/48] cpu: introduce run_on_cpu_no_bql

2018-11-14 Thread Alex Bennée
Emilio G. Cota writes: > This allows us to queue synchronous CPU work without the BQL. > > Will gain a user soon. This is also in the cpu-lock series right? > > Signed-off-by: Emilio G. Cota > --- > include/qom/cpu.h | 13 + > cpus-common.c | 28 ++--

[Qemu-devel] [RFC 01/48] cpu: introduce run_on_cpu_no_bql

2018-10-25 Thread Emilio G. Cota
This allows us to queue synchronous CPU work without the BQL. Will gain a user soon. Signed-off-by: Emilio G. Cota --- include/qom/cpu.h | 13 + cpus-common.c | 28 ++-- 2 files changed, 35 insertions(+), 6 deletions(-) diff --git a/include/qom/cpu.h b/i