diff options
author | Juan Quintela <quintela@redhat.com> | 2017-04-24 18:53:30 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2017-06-13 11:00:45 +0200 |
commit | 84a899de8c5b7daa3777cb9ccaa7c5f362bb01b9 (patch) | |
tree | a35774f3cb08660b52abcf4650b45e66a3057d10 /hw | |
parent | 2ce3bf1aa97abb20af3a90131745c9b68e04bedd (diff) |
migration: create global_state.c
It don't belong anywhere else, just the global state where everybody
can stick other things.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Laurent Vivier <lvivier@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/pc_piix.c | 1 | ||||
-rw-r--r-- | hw/ppc/spapr.c | 1 | ||||
-rw-r--r-- | hw/xen/xen-common.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index 2234bd0461..dc19d96a97 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -52,6 +52,7 @@ #include <xen/hvm/hvm_info_table.h> #include "hw/xen/xen_pt.h" #endif +#include "migration/global_state.h" #include "migration/migration.h" #include "kvm_i386.h" #include "sysemu/numa.h" diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index bf2178f11e..747ffd3cd1 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c @@ -39,6 +39,7 @@ #include "sysemu/hw_accel.h" #include "kvm_ppc.h" #include "migration/migration.h" +#include "migration/global_state.h" #include "migration/register.h" #include "mmu-hash64.h" #include "mmu-book3s-v3.h" diff --git a/hw/xen/xen-common.c b/hw/xen/xen-common.c index 0bed5770c9..8c2de255ff 100644 --- a/hw/xen/xen-common.c +++ b/hw/xen/xen-common.c @@ -14,6 +14,7 @@ #include "chardev/char.h" #include "sysemu/accel.h" #include "migration/migration.h" +#include "migration/global_state.h" //#define DEBUG_XEN |