Re: [RFC PATCH v3 8/8] target/s390x: Use start-powered-off CPUState property

2020-08-12 Thread Thiago Jung Bauermann
Cornelia Huck writes: > On Thu, 30 Jul 2020 11:45:41 +0200 > Cornelia Huck wrote: > >> On Tue, 28 Jul 2020 21:51:33 -0300 >> Thiago Jung Bauermann wrote: >> >> > Hi, >> > >> > Cornelia Huck writes: >> > >> > > On Wed, 22 Jul 2020 23:56:57 -0300 >> > > Thiago Jung Bauermann wrote: >> >

Re: [RFC PATCH v3 8/8] target/s390x: Use start-powered-off CPUState property

2020-08-11 Thread Cornelia Huck
On Thu, 30 Jul 2020 11:45:41 +0200 Cornelia Huck wrote: > On Tue, 28 Jul 2020 21:51:33 -0300 > Thiago Jung Bauermann wrote: > > > Hi, > > > > Cornelia Huck writes: > > > > > On Wed, 22 Jul 2020 23:56:57 -0300 > > > Thiago Jung Bauermann wrote: > > > > > >> Instead of setting CPUState:

Re: [RFC PATCH v3 8/8] target/s390x: Use start-powered-off CPUState property

2020-07-30 Thread Cornelia Huck
On Tue, 28 Jul 2020 21:51:33 -0300 Thiago Jung Bauermann wrote: > Hi, > > Cornelia Huck writes: > > > On Wed, 22 Jul 2020 23:56:57 -0300 > > Thiago Jung Bauermann wrote: > > > >> Instead of setting CPUState::halted to 1 in s390_cpu_initfn(), use the > >> start-powered-off property which mak

Re: [RFC PATCH v3 8/8] target/s390x: Use start-powered-off CPUState property

2020-07-28 Thread Thiago Jung Bauermann
Hi, Cornelia Huck writes: > On Wed, 22 Jul 2020 23:56:57 -0300 > Thiago Jung Bauermann wrote: > >> Instead of setting CPUState::halted to 1 in s390_cpu_initfn(), use the >> start-powered-off property which makes cpu_common_reset() initialize it >> to 1 in common code. >> >> Note that this ch

Re: [RFC PATCH v3 8/8] target/s390x: Use start-powered-off CPUState property

2020-07-27 Thread Cornelia Huck
On Wed, 22 Jul 2020 23:56:57 -0300 Thiago Jung Bauermann wrote: > Instead of setting CPUState::halted to 1 in s390_cpu_initfn(), use the > start-powered-off property which makes cpu_common_reset() initialize it > to 1 in common code. > > Note that this changes behavior by setting cs->halted to 1

[RFC PATCH v3 8/8] target/s390x: Use start-powered-off CPUState property

2020-07-22 Thread Thiago Jung Bauermann
Instead of setting CPUState::halted to 1 in s390_cpu_initfn(), use the start-powered-off property which makes cpu_common_reset() initialize it to 1 in common code. Note that this changes behavior by setting cs->halted to 1 on reset, which didn't happen before. Signed-off-by: Thiago Jung Bauermann