Re: [Qemu-devel] [PATCH 04/19] cpu: call cpu_synchronize_post_init() from CPUClass.realize() if hotplugged

2013-04-15 Thread Igor Mammedov
On Mon, 15 Apr 2013 16:57:10 -0300 Eduardo Habkost wrote: > On Thu, Apr 11, 2013 at 04:51:43PM +0200, Igor Mammedov wrote: > [...] > > diff --git a/kvm-all.c b/kvm-all.c > > index fc4e17c..1d17128 100644 > > --- a/kvm-all.c > > +++ b/kvm-all.c > > @@ -109,6 +109,7 @@ bool kvm_async_interrupts_all

Re: [Qemu-devel] [PATCH 04/19] cpu: call cpu_synchronize_post_init() from CPUClass.realize() if hotplugged

2013-04-15 Thread Eduardo Habkost
On Thu, Apr 11, 2013 at 04:51:43PM +0200, Igor Mammedov wrote: [...] > diff --git a/kvm-all.c b/kvm-all.c > index fc4e17c..1d17128 100644 > --- a/kvm-all.c > +++ b/kvm-all.c > @@ -109,6 +109,7 @@ bool kvm_async_interrupts_allowed; > bool kvm_irqfds_allowed; > bool kvm_msi_via_irqfd_allowed; > bo

Re: [Qemu-devel] [PATCH 04/19] cpu: call cpu_synchronize_post_init() from CPUClass.realize() if hotplugged

2013-04-12 Thread Eduardo Habkost
On Fri, Apr 12, 2013 at 01:34:09PM +0200, Igor Mammedov wrote: > On Thu, 11 Apr 2013 15:33:01 -0300 > Eduardo Habkost wrote: > > > On Thu, Apr 11, 2013 at 04:51:43PM +0200, Igor Mammedov wrote: > > > ... to synchronize CPU state to KVM > > > > > > Signed-off-by: Igor Mammedov > > > --- > > > v2

Re: [Qemu-devel] [PATCH 04/19] cpu: call cpu_synchronize_post_init() from CPUClass.realize() if hotplugged

2013-04-12 Thread Igor Mammedov
On Thu, 11 Apr 2013 15:33:01 -0300 Eduardo Habkost wrote: > On Thu, Apr 11, 2013 at 04:51:43PM +0200, Igor Mammedov wrote: > > ... to synchronize CPU state to KVM > > > > Signed-off-by: Igor Mammedov > > --- > > v2: > > * linking kvm-stub.o to *-user target moved in separate patch > > --- > >

Re: [Qemu-devel] [PATCH 04/19] cpu: call cpu_synchronize_post_init() from CPUClass.realize() if hotplugged

2013-04-11 Thread Eduardo Habkost
On Thu, Apr 11, 2013 at 04:51:43PM +0200, Igor Mammedov wrote: > ... to synchronize CPU state to KVM > > Signed-off-by: Igor Mammedov > --- > v2: > * linking kvm-stub.o to *-user target moved in separate patch > --- > include/sysemu/kvm.h | 18 ++ > kvm-all.c| 1 +

[Qemu-devel] [PATCH 04/19] cpu: call cpu_synchronize_post_init() from CPUClass.realize() if hotplugged

2013-04-11 Thread Igor Mammedov
... to synchronize CPU state to KVM Signed-off-by: Igor Mammedov --- v2: * linking kvm-stub.o to *-user target moved in separate patch --- include/sysemu/kvm.h | 18 ++ kvm-all.c| 1 + kvm-stub.c | 1 + qom/cpu.c| 4 vl.c