diff options
author | Juan Quintela <quintela@redhat.com> | 2014-10-08 13:58:24 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2015-07-07 14:54:52 +0200 |
commit | 13d16814d2058f10461e6987c8216950389c1310 (patch) | |
tree | 48a3c7cff5bc7923b9d4b8d5eba54bcfe746aff8 /hw/ppc/spapr.c | |
parent | df4b1024526cae3479da3492d6371fd4a7324a03 (diff) | |
download | qemu-13d16814d2058f10461e6987c8216950389c1310.zip |
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/ppc/spapr.c')
-rw-r--r-- | hw/ppc/spapr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index 01f8da8f3c..bcf5f0f6ba 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c @@ -1853,6 +1853,7 @@ static const TypeInfo spapr_machine_info = { static void spapr_compat_2_3(Object *obj) { savevm_skip_section_footers(); + global_state_set_optional(); } static void spapr_compat_2_2(Object *obj) |