All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] hw: fix using 4.2 compat in 5.0 machine types for i440fx/q35
@ 2019-12-23  7:28 Denis Plotnikov
  2019-12-26 10:15 ` Igor Mammedov
  2020-01-07  9:24 ` Cornelia Huck
  0 siblings, 2 replies; 4+ messages in thread
From: Denis Plotnikov @ 2019-12-23  7:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: ehabkost, mst, cohuck, pbonzini, rth

5.0 machine type uses 4.2 compats. This seems to be incorrect, since
the latests machine type by now is 5.0 and it should use its own
compat or shouldn't use any relying on the defaults.
Seems, like this appeared because of some problems on merge/rebase.

Signed-off-by: Denis Plotnikov <dplotnikov@virtuozzo.com>
---
 hw/i386/pc_piix.c | 1 -
 hw/i386/pc_q35.c  | 1 -
 2 files changed, 2 deletions(-)

diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
index ffb30c32ce..846e70bc55 100644
--- a/hw/i386/pc_piix.c
+++ b/hw/i386/pc_piix.c
@@ -431,7 +431,6 @@ static void pc_i440fx_5_0_machine_options(MachineClass *m)
     m->alias = "pc";
     m->is_default = 1;
     pcmc->default_cpu_version = 1;
-    compat_props_add(m->compat_props, hw_compat_4_2, hw_compat_4_2_len);
 }
 
 DEFINE_I440FX_MACHINE(v5_0, "pc-i440fx-5.0", NULL,
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
index 7398d7baa2..ddd485d608 100644
--- a/hw/i386/pc_q35.c
+++ b/hw/i386/pc_q35.c
@@ -354,7 +354,6 @@ static void pc_q35_5_0_machine_options(MachineClass *m)
     pc_q35_machine_options(m);
     m->alias = "q35";
     pcmc->default_cpu_version = 1;
-    compat_props_add(m->compat_props, hw_compat_4_2, hw_compat_4_2_len);
 }
 
 DEFINE_Q35_MACHINE(v5_0, "pc-q35-5.0", NULL,
-- 
2.17.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v1] hw: fix using 4.2 compat in 5.0 machine types for i440fx/q35
  2019-12-23  7:28 [PATCH v1] hw: fix using 4.2 compat in 5.0 machine types for i440fx/q35 Denis Plotnikov
@ 2019-12-26 10:15 ` Igor Mammedov
  2020-01-07  9:24 ` Cornelia Huck
  1 sibling, 0 replies; 4+ messages in thread
From: Igor Mammedov @ 2019-12-26 10:15 UTC (permalink / raw)
  To: Denis Plotnikov; +Cc: ehabkost, mst, cohuck, qemu-devel, pbonzini, rth

On Mon, 23 Dec 2019 10:28:56 +0300
Denis Plotnikov <dplotnikov@virtuozzo.com> wrote:

> 5.0 machine type uses 4.2 compats. This seems to be incorrect, since
> the latests machine type by now is 5.0 and it should use its own
> compat or shouldn't use any relying on the defaults.
> Seems, like this appeared because of some problems on merge/rebase.
> 
> Signed-off-by: Denis Plotnikov <dplotnikov@virtuozzo.com>

Reviewed-by: Igor Mammedov <imammedo@redhat.com>

> ---
>  hw/i386/pc_piix.c | 1 -
>  hw/i386/pc_q35.c  | 1 -
>  2 files changed, 2 deletions(-)
> 
> diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
> index ffb30c32ce..846e70bc55 100644
> --- a/hw/i386/pc_piix.c
> +++ b/hw/i386/pc_piix.c
> @@ -431,7 +431,6 @@ static void pc_i440fx_5_0_machine_options(MachineClass *m)
>      m->alias = "pc";
>      m->is_default = 1;
>      pcmc->default_cpu_version = 1;
> -    compat_props_add(m->compat_props, hw_compat_4_2, hw_compat_4_2_len);
>  }
>  
>  DEFINE_I440FX_MACHINE(v5_0, "pc-i440fx-5.0", NULL,
> diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
> index 7398d7baa2..ddd485d608 100644
> --- a/hw/i386/pc_q35.c
> +++ b/hw/i386/pc_q35.c
> @@ -354,7 +354,6 @@ static void pc_q35_5_0_machine_options(MachineClass *m)
>      pc_q35_machine_options(m);
>      m->alias = "q35";
>      pcmc->default_cpu_version = 1;
> -    compat_props_add(m->compat_props, hw_compat_4_2, hw_compat_4_2_len);
>  }
>  
>  DEFINE_Q35_MACHINE(v5_0, "pc-q35-5.0", NULL,



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v1] hw: fix using 4.2 compat in 5.0 machine types for i440fx/q35
  2019-12-23  7:28 [PATCH v1] hw: fix using 4.2 compat in 5.0 machine types for i440fx/q35 Denis Plotnikov
  2019-12-26 10:15 ` Igor Mammedov
@ 2020-01-07  9:24 ` Cornelia Huck
  2020-01-07 10:51   ` Paolo Bonzini
  1 sibling, 1 reply; 4+ messages in thread
From: Cornelia Huck @ 2020-01-07  9:24 UTC (permalink / raw)
  To: Denis Plotnikov; +Cc: ehabkost, mst, qemu-devel, pbonzini, rth

On Mon, 23 Dec 2019 10:28:56 +0300
Denis Plotnikov <dplotnikov@virtuozzo.com> wrote:

> 5.0 machine type uses 4.2 compats. This seems to be incorrect, since
> the latests machine type by now is 5.0 and it should use its own
> compat or shouldn't use any relying on the defaults.
> Seems, like this appeared because of some problems on merge/rebase.

Yes, I seem to have fat-fingered that while rebasing.

> 
> Signed-off-by: Denis Plotnikov <dplotnikov@virtuozzo.com>
> ---
>  hw/i386/pc_piix.c | 1 -
>  hw/i386/pc_q35.c  | 1 -
>  2 files changed, 2 deletions(-)

I double checked that the other compat machines seem fine.

Reviewed-by: Cornelia Huck <cohuck@redhat.com>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v1] hw: fix using 4.2 compat in 5.0 machine types for i440fx/q35
  2020-01-07  9:24 ` Cornelia Huck
@ 2020-01-07 10:51   ` Paolo Bonzini
  0 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2020-01-07 10:51 UTC (permalink / raw)
  To: Cornelia Huck, Denis Plotnikov; +Cc: ehabkost, rth, qemu-devel, mst

On 07/01/20 10:24, Cornelia Huck wrote:
> On Mon, 23 Dec 2019 10:28:56 +0300
> Denis Plotnikov <dplotnikov@virtuozzo.com> wrote:
> 
>> 5.0 machine type uses 4.2 compats. This seems to be incorrect, since
>> the latests machine type by now is 5.0 and it should use its own
>> compat or shouldn't use any relying on the defaults.
>> Seems, like this appeared because of some problems on merge/rebase.
> 
> Yes, I seem to have fat-fingered that while rebasing.
> 
>>
>> Signed-off-by: Denis Plotnikov <dplotnikov@virtuozzo.com>
>> ---
>>  hw/i386/pc_piix.c | 1 -
>>  hw/i386/pc_q35.c  | 1 -
>>  2 files changed, 2 deletions(-)
> 
> I double checked that the other compat machines seem fine.
> 
> Reviewed-by: Cornelia Huck <cohuck@redhat.com>
> 

Queued, thanks.

Paolo



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-01-07 11:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-23  7:28 [PATCH v1] hw: fix using 4.2 compat in 5.0 machine types for i440fx/q35 Denis Plotnikov
2019-12-26 10:15 ` Igor Mammedov
2020-01-07  9:24 ` Cornelia Huck
2020-01-07 10:51   ` Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.