]> Git Repo - qemu.git/commitdiff
boards.h: Ignore migration for SMBus devices on older machines
authorCorey Minyard <[email protected]>
Wed, 14 Nov 2018 20:41:01 +0000 (14:41 -0600)
committerCorey Minyard <[email protected]>
Thu, 28 Feb 2019 03:06:08 +0000 (21:06 -0600)
Migration capability is being added for pm_smbus and SMBus devices.
This change will allow backwards compatibility to be kept when
migrating back to an old qemu version.  Add a bool to the machine
class tho keep smbus migration from happening.  Future changes
will use this.

Signed-off-by: Corey Minyard <[email protected]>
Cc: Eduardo Habkost <[email protected]>
Cc: Marcel Apfelbaum <[email protected]>
Reviewed-by: Dr. David Alan Gilbert <[email protected]>
hw/i386/pc_piix.c
hw/i386/pc_q35.c
include/hw/boards.h

index 3e9037a19a010392befead6ee9581c1310c23cfa..8770ecada9771754e4b456e7883413410570a460 100644 (file)
@@ -444,6 +444,7 @@ static void pc_i440fx_3_1_machine_options(MachineClass *m)
 
     pc_i440fx_4_0_machine_options(m);
     m->is_default = 0;
+    m->smbus_no_migration_support = true;
     m->alias = NULL;
     pcmc->pvh_enabled = false;
     compat_props_add(m->compat_props, hw_compat_3_1, hw_compat_3_1_len);
index 503eeb46f58a570b6b24b0c8633318eac4505d7a..cfb9043e12139617ba612d7bf51438c1a3e1b2b7 100644 (file)
@@ -380,6 +380,7 @@ static void pc_q35_3_1_machine_options(MachineClass *m)
 
     pc_q35_4_0_machine_options(m);
     m->default_kernel_irqchip_split = false;
+    m->smbus_no_migration_support = true;
     m->alias = NULL;
     pcmc->pvh_enabled = false;
     compat_props_add(m->compat_props, hw_compat_3_1, hw_compat_3_1_len);
index 05f9f45c3d0ff4027c10cb9e90a137c09231a153..21212f085902a0a17c5eaa7291e3afdbd20c9729 100644 (file)
@@ -206,6 +206,7 @@ struct MachineClass {
     void (*numa_auto_assign_ram)(MachineClass *mc, NodeInfo *nodes,
                                  int nb_nodes, ram_addr_t size);
     bool ignore_boot_device_suffixes;
+    bool smbus_no_migration_support;
 
     HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
                                            DeviceState *dev);
This page took 0.030019 seconds and 4 git commands to generate.