Re: [PATCH v2 1/9] cpus: Export queue work related fields to cpu.h

2021-07-27 Thread David Hildenbrand
On 23.07.21 21:34, Peter Xu wrote: This patch has no functional change, but prepares for moving the function do_run_on_cpu() into softmmu/cpus.c. It does: 1. Move qemu_work_item into hw/core/cpu.h. 2. Export queue_work_on_cpu()/qemu_work_cond. All of them will be used by softmmu/cpus.c l

[PATCH v2 1/9] cpus: Export queue work related fields to cpu.h

2021-07-23 Thread Peter Xu
This patch has no functional change, but prepares for moving the function do_run_on_cpu() into softmmu/cpus.c. It does: 1. Move qemu_work_item into hw/core/cpu.h. 2. Export queue_work_on_cpu()/qemu_work_cond. All of them will be used by softmmu/cpus.c later. Signed-off-by: Peter Xu --- cp