Re: [Qemu-devel] [PATCH 3/8] RunState: Add additional states

2011-09-06 Thread Luiz Capitulino
On Fri, 2 Sep 2011 11:28:18 -0300 Luiz Capitulino wrote: > On Thu, 01 Sep 2011 22:58:51 +0200 > Jan Kiszka wrote: > > > On 2011-09-01 20:39, Luiz Capitulino wrote: > > > On Thu, 01 Sep 2011 20:30:57 +0200 > > > Jan Kiszka wrote: > > > > > >> On 2011-09-01 20:12, Luiz Capitulino wrote: > > >>>

Re: [Qemu-devel] [PATCH 3/8] RunState: Add additional states

2011-09-02 Thread Luiz Capitulino
On Fri, 02 Sep 2011 16:32:25 +0200 Jan Kiszka wrote: > On 2011-09-02 16:28, Luiz Capitulino wrote: > > On Thu, 01 Sep 2011 22:58:51 +0200 > > Jan Kiszka wrote: > > > >> On 2011-09-01 20:39, Luiz Capitulino wrote: > >>> On Thu, 01 Sep 2011 20:30:57 +0200 > >>> Jan Kiszka wrote: > >>> > On

Re: [Qemu-devel] [PATCH 3/8] RunState: Add additional states

2011-09-02 Thread Jan Kiszka
On 2011-09-02 16:28, Luiz Capitulino wrote: > On Thu, 01 Sep 2011 22:58:51 +0200 > Jan Kiszka wrote: > >> On 2011-09-01 20:39, Luiz Capitulino wrote: >>> On Thu, 01 Sep 2011 20:30:57 +0200 >>> Jan Kiszka wrote: >>> On 2011-09-01 20:12, Luiz Capitulino wrote: > Currently, only vm_start()

Re: [Qemu-devel] [PATCH 3/8] RunState: Add additional states

2011-09-02 Thread Luiz Capitulino
On Thu, 01 Sep 2011 22:58:51 +0200 Jan Kiszka wrote: > On 2011-09-01 20:39, Luiz Capitulino wrote: > > On Thu, 01 Sep 2011 20:30:57 +0200 > > Jan Kiszka wrote: > > > >> On 2011-09-01 20:12, Luiz Capitulino wrote: > >>> Currently, only vm_start() and vm_stop() change the VM state. > >>> That's,

Re: [Qemu-devel] [PATCH 3/8] RunState: Add additional states

2011-09-01 Thread Jan Kiszka
On 2011-09-01 20:39, Luiz Capitulino wrote: > On Thu, 01 Sep 2011 20:30:57 +0200 > Jan Kiszka wrote: > >> On 2011-09-01 20:12, Luiz Capitulino wrote: >>> Currently, only vm_start() and vm_stop() change the VM state. >>> That's, the state is only changed when starting or stopping the VM. >>> >>> T

Re: [Qemu-devel] [PATCH 3/8] RunState: Add additional states

2011-09-01 Thread Luiz Capitulino
On Thu, 01 Sep 2011 20:30:57 +0200 Jan Kiszka wrote: > On 2011-09-01 20:12, Luiz Capitulino wrote: > > Currently, only vm_start() and vm_stop() change the VM state. > > That's, the state is only changed when starting or stopping the VM. > > > > This commit adds the runstate_set() function, which

[Qemu-devel] [PATCH 3/8] RunState: Add additional states

2011-09-01 Thread Luiz Capitulino
Currently, only vm_start() and vm_stop() change the VM state. That's, the state is only changed when starting or stopping the VM. This commit adds the runstate_set() function, which makes it possible to also do state transitions when the VM is stopped or running. Additional states are also added

Re: [Qemu-devel] [PATCH 3/8] RunState: Add additional states

2011-09-01 Thread Jan Kiszka
On 2011-09-01 20:12, Luiz Capitulino wrote: > Currently, only vm_start() and vm_stop() change the VM state. > That's, the state is only changed when starting or stopping the VM. > > This commit adds the runstate_set() function, which makes it possible > to also do state transitions when the VM is

[Qemu-devel] [PATCH 3/8] RunState: Add additional states

2011-08-10 Thread Luiz Capitulino
Currently, only vm_start() and vm_stop() change the VM state. That's, the state is only changed when starting or stopping the VM. This commit adds the runstate_set() function, which makes it possible to also do state transitions when the VM is stopped or running. Additional states are also added