Re: [PATCH v3 03/30] hw/core: Un-inline cpu_has_work()

2021-09-03 Thread Richard Henderson
On 9/2/21 6:15 PM, Philippe Mathieu-Daudé wrote: We want to make cpu_has_work() per-accelerator. Only declare its prototype and move its definition to softmmu/cpus.c. Signed-off-by: Philippe Mathieu-Daudé --- include/hw/core/cpu.h | 8 +--- softmmu/cpus.c| 8 2 files

[PATCH v3 03/30] hw/core: Un-inline cpu_has_work()

2021-09-02 Thread Philippe Mathieu-Daudé
We want to make cpu_has_work() per-accelerator. Only declare its prototype and move its definition to softmmu/cpus.c. Signed-off-by: Philippe Mathieu-Daudé --- include/hw/core/cpu.h | 8 +--- softmmu/cpus.c| 8 2 files changed, 9 insertions(+), 7 deletions(-) diff --git