qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 02/21] cpu: call cpu_synchronize_post_init() fro


From: Igor Mammedov
Subject: Re: [Qemu-devel] [PATCH 02/21] cpu: call cpu_synchronize_post_init() from CPUClass.realize() if hotplugged
Date: Wed, 24 Apr 2013 15:34:08 +0200

On Wed, 24 Apr 2013 14:08:45 +0200
Andreas Färber <address@hidden> wrote:

> Am 23.04.2013 17:59, schrieb Andreas Färber:
> > Am 23.04.2013 10:29, schrieb Igor Mammedov:
> >> ... to synchronize CPU state to KVM
> >>
> >> Signed-off-by: Igor Mammedov <address@hidden>
> >> Reviewed-by: Eduardo Habkost <address@hidden>
> >> ---
> >> v2:
> >>   * linking kvm-stub.o to *-user target moved in separate patch
> > 
> > Thanks, applied to qom-cpu:
> > https://github.com/afaerber/qemu-cpu/commits/qom-cpu
> 
> To facilitate conflict resolution for future patches, I have modified
> this to match other functions in there and to spare refactorings:
> 
> diff --git a/qom/cpu.c b/qom/cpu.c
> index 0c76712..66f7c00 100644
> --- a/qom/cpu.c
> +++ b/qom/cpu.c
> @@ -58,8 +58,10 @@ static ObjectClass *cpu_common_class_by_name(const
> char *cpu_model)
> 
>  static void cpu_common_realizefn(DeviceState *dev, Error **errp)
>  {
> +    CPUState *cpu = CPU(dev);
> +
>      if (dev->hotplugged) {
> -        cpu_synchronize_post_init(CPU(dev));
> +        cpu_synchronize_post_init(cpu);
>      }
>  }
> 

Fixed conflicts in 4-5/21,
available at https://github.com/imammedo/qemu/commits/cpu_set.WIP

> Andreas
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]