qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2 1/9] s390x: add 2.6 compat machine


From: Christian Borntraeger
Subject: Re: [Qemu-devel] [PATCH v2 1/9] s390x: add 2.6 compat machine
Date: Fri, 8 Jan 2016 13:22:05 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0

On 01/07/2016 02:36 PM, Cornelia Huck wrote:
> New qemu version, new machine.
> 
> Signed-off-by: Cornelia Huck <address@hidden>

Acked-by: Christian Borntraeger <address@hidden>


> ---
>  hw/s390x/s390-virtio-ccw.c | 18 ++++++++++++++++--
>  1 file changed, 16 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c
> index 5a52ff2..8d7d04b 100644
> --- a/hw/s390x/s390-virtio-ccw.c
> +++ b/hw/s390x/s390-virtio-ccw.c
> @@ -297,9 +297,7 @@ static void ccw_machine_2_5_class_init(ObjectClass *oc, 
> void *data)
>  {
>      MachineClass *mc = MACHINE_CLASS(oc);
> 
> -    mc->alias = "s390-ccw-virtio";
>      mc->desc = "VirtIO-ccw based S390 machine v2.5";
> -    mc->is_default = 1;
>  }
> 
>  static const TypeInfo ccw_machine_2_5_info = {
> @@ -308,11 +306,27 @@ static const TypeInfo ccw_machine_2_5_info = {
>      .class_init    = ccw_machine_2_5_class_init,
>  };
> 
> +static void ccw_machine_2_6_class_init(ObjectClass *oc, void *data)
> +{
> +    MachineClass *mc = MACHINE_CLASS(oc);
> +
> +    mc->alias = "s390-ccw-virtio";
> +    mc->desc = "VirtIO-ccw based S390 machine v2.6";
> +    mc->is_default = 1;
> +}
> +
> +static const TypeInfo ccw_machine_2_6_info = {
> +    .name          = MACHINE_TYPE_NAME("s390-ccw-virtio-2.6"),
> +    .parent        = TYPE_S390_CCW_MACHINE,
> +    .class_init    = ccw_machine_2_6_class_init,
> +};
> +
>  static void ccw_machine_register_types(void)
>  {
>      type_register_static(&ccw_machine_info);
>      type_register_static(&ccw_machine_2_4_info);
>      type_register_static(&ccw_machine_2_5_info);
> +    type_register_static(&ccw_machine_2_6_info);
>  }
> 
>  type_init(ccw_machine_register_types)
> 




reply via email to

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