Re: [PATCH v2] target/s390x: fix execution with icount

2020-11-04 Thread Pavel Dovgalyuk
On 04.11.2020 20:31, Cornelia Huck wrote: On Mon, 02 Nov 2020 12:26:59 +0300 Pavel Dovgalyuk wrote: This patch adds some gen_io_start() calls to allow execution of s390x targets in icount mode with -smp 1. It enables deterministic timers and record/replay features. Signed-off-by: Pavel

Re: [PATCH v2] target/s390x: fix execution with icount

2020-11-04 Thread Cornelia Huck
On Mon, 02 Nov 2020 12:26:59 +0300 Pavel Dovgalyuk wrote: > This patch adds some gen_io_start() calls to allow execution > of s390x targets in icount mode with -smp 1. > It enables deterministic timers and record/replay features. > > Signed-off-by: Pavel Dovgalyuk > > --- > > v2: > - added

Re: [PATCH v2] target/s390x: fix execution with icount

2020-11-02 Thread Richard Henderson
On 11/2/20 1:26 AM, Pavel Dovgalyuk wrote: > This patch adds some gen_io_start() calls to allow execution > of s390x targets in icount mode with -smp 1. > It enables deterministic timers and record/replay features. > > Signed-off-by: Pavel Dovgalyuk Reviewed-by: Richard Henderson r~

Re: [PATCH v2] target/s390x: fix execution with icount

2020-11-02 Thread David Hildenbrand
On 02.11.20 10:41, Pavel Dovgalyuk wrote: On 02.11.2020 12:34, David Hildenbrand wrote: On 02.11.20 10:26, Pavel Dovgalyuk wrote: This patch adds some gen_io_start() calls to allow execution of s390x targets in icount mode with -smp 1. It enables deterministic timers and record/replay

Re: [PATCH v2] target/s390x: fix execution with icount

2020-11-02 Thread Pavel Dovgalyuk
On 02.11.2020 12:34, David Hildenbrand wrote: On 02.11.20 10:26, Pavel Dovgalyuk wrote: This patch adds some gen_io_start() calls to allow execution of s390x targets in icount mode with -smp 1. It enables deterministic timers and record/replay features. Why do we have to set it for SIGP?

Re: [PATCH v2] target/s390x: fix execution with icount

2020-11-02 Thread David Hildenbrand
On 02.11.20 10:26, Pavel Dovgalyuk wrote: This patch adds some gen_io_start() calls to allow execution of s390x targets in icount mode with -smp 1. It enables deterministic timers and record/replay features. Why do we have to set it for SIGP? Signed-off-by: Pavel Dovgalyuk --- v2: -

Re: [PATCH v2] target/s390x: fix execution with icount

2020-11-02 Thread Philippe Mathieu-Daudé
On 11/2/20 10:26 AM, Pavel Dovgalyuk wrote: > This patch adds some gen_io_start() calls to allow execution > of s390x targets in icount mode with -smp 1. > It enables deterministic timers and record/replay features. > > Signed-off-by: Pavel Dovgalyuk > > --- > > v2: > - added IF_IO flag to

[PATCH v2] target/s390x: fix execution with icount

2020-11-02 Thread Pavel Dovgalyuk
This patch adds some gen_io_start() calls to allow execution of s390x targets in icount mode with -smp 1. It enables deterministic timers and record/replay features. Signed-off-by: Pavel Dovgalyuk --- v2: - added IF_IO flag to reuse icount code in translate_one() (suggested by Richard