summaryrefslogtreecommitdiffstats
path: root/hw/i386
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2014-10-08 13:58:24 +0200
committerJuan Quintela <quintela@redhat.com>2015-07-07 14:54:52 +0200
commit13d16814d2058f10461e6987c8216950389c1310 (patch)
tree48a3c7cff5bc7923b9d4b8d5eba54bcfe746aff8 /hw/i386
parentdf4b1024526cae3479da3492d6371fd4a7324a03 (diff)
downloadhqemu-13d16814d2058f10461e6987c8216950389c1310.zip
hqemu-13d16814d2058f10461e6987c8216950389c1310.tar.gz
global_state: Make section optional
This section would be sent: a- for all new machine types b- for old machine types if section state is different form {running,paused} that were the only giving us troubles. So, in new qemus: it is alwasy there. In old qemus: they are only there if it an error has happened, basically stoping on target. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'hw/i386')
-rw-r--r--hw/i386/pc_piix.c1
-rw-r--r--hw/i386/pc_q35.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
index 56cdcb9..3ee3b47 100644
--- a/hw/i386/pc_piix.c
+++ b/hw/i386/pc_piix.c
@@ -312,6 +312,7 @@ static void pc_compat_2_3(MachineState *machine)
if (kvm_enabled()) {
pcms->smm = ON_OFF_AUTO_OFF;
}
+ global_state_set_optional();
}
static void pc_compat_2_2(MachineState *machine)
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
index 8aa3a67..0dc4ab1 100644
--- a/hw/i386/pc_q35.c
+++ b/hw/i386/pc_q35.c
@@ -295,6 +295,7 @@ static void pc_compat_2_3(MachineState *machine)
if (kvm_enabled()) {
pcms->smm = ON_OFF_AUTO_OFF;
}
+ global_state_set_optional();
}
static void pc_compat_2_2(MachineState *machine)
OpenPOWER on IntegriCloud