Re: [PATCH 2/3] accel/tcg: Factor out common tcg_exec_reset() helper

2025-01-21 Thread Pierrick Bouvier
On 1/2/25 10:25, Philippe Mathieu-Daudé wrote: Since tcg_cpu_reset_hold() is a system emulation specific helper, factor tcg_exec_reset() out so we can use it from user emulation, similarly to the [un]realize() handlers. Signed-off-by: Philippe Mathieu-Daudé --- accel/tcg/internal-common.h | 1

Re: [PATCH 2/3] accel/tcg: Factor out common tcg_exec_reset() helper

2025-01-09 Thread Ilya Leoshkevich
On Thu, 2025-01-02 at 19:25 +0100, Philippe Mathieu-Daudé wrote: > Since tcg_cpu_reset_hold() is a system emulation specific > helper, factor tcg_exec_reset() out so we can use it from > user emulation, similarly to the [un]realize() handlers. > > Signed-off-by: Philippe Mathieu-Daudé > --- >  ac

[PATCH 2/3] accel/tcg: Factor out common tcg_exec_reset() helper

2025-01-02 Thread Philippe Mathieu-Daudé
Since tcg_cpu_reset_hold() is a system emulation specific helper, factor tcg_exec_reset() out so we can use it from user emulation, similarly to the [un]realize() handlers. Signed-off-by: Philippe Mathieu-Daudé --- accel/tcg/internal-common.h | 1 + accel/tcg/cpu-exec-common.c | 6 ++ accel/