Re: [PATCH-for-5.1 v3 1/2] exec: Restrict icount to softmmu

2020-08-05 Thread Richard Henderson
On 8/5/20 3:01 AM, Philippe Mathieu-Daudé wrote: > 'icount' feature is only meaningful when using softmmu. > Move it out of the globally used exec.c, and define it as > 'false' in user-mode emulation. > > Signed-off-by: Philippe Mathieu-Daudé > --- > include/sysemu/cpus.h | 4 > exec.c

Re: [PATCH-for-5.1 v3 1/2] exec: Restrict icount to softmmu

2020-08-05 Thread Philippe Mathieu-Daudé
On 8/5/20 12:12 PM, Claudio Fontana wrote: > Hi Philippe, > > could you take a look if this series already addresses the issue? > > https://lists.gnu.org/archive/html/qemu-devel/2020-08/msg00067.html I had tagged this series as "after-release" review and hadn't looked at it yet :) > > Everythi

Re: [PATCH-for-5.1 v3 1/2] exec: Restrict icount to softmmu

2020-08-05 Thread Claudio Fontana
Hi Philippe, could you take a look if this series already addresses the issue? https://lists.gnu.org/archive/html/qemu-devel/2020-08/msg00067.html Everything icount related is already moved to softmmu and made TCG only. I will post a new version of the series today with a couple changes; the s

[PATCH-for-5.1 v3 1/2] exec: Restrict icount to softmmu

2020-08-05 Thread Philippe Mathieu-Daudé
'icount' feature is only meaningful when using softmmu. Move it out of the globally used exec.c, and define it as 'false' in user-mode emulation. Signed-off-by: Philippe Mathieu-Daudé --- include/sysemu/cpus.h | 4 exec.c| 4 softmmu/cpus.c| 7 +++ 3 files c