diff options
author | Alexander Graf <agraf@suse.de> | 2015-02-23 13:56:42 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2015-03-16 14:35:20 +0100 |
commit | 9850c6047b8b4343e91da4780a41bb88faeb018a (patch) | |
tree | e3aafafa355915599863288dce6841401efe1e44 /include/hw/boards.h | |
parent | 1925cebc4b12903e3a66106893fd97e35c5d0baf (diff) | |
download | qemu-9850c6047b8b4343e91da4780a41bb88faeb018a.zip qemu-9850c6047b8b4343e91da4780a41bb88faeb018a.tar.gz qemu-9850c6047b8b4343e91da4780a41bb88faeb018a.tar.bz2 |
migration: Allow to suppress vmdesc submission
We now always send a JSON blob describing the migration file format as part
of the migration stream. However, some tools built around QEMU have proven
to stumble over this.
This patch gives the user the chance to disable said self-describing part of
the migration stream. To disable vmdesc submission, just add
-machine suppress-vmdesc=on
to your QEMU command line.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'include/hw/boards.h')
-rw-r--r-- | include/hw/boards.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h index f44d6f5..1feea2b 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -143,6 +143,7 @@ struct MachineState { bool usb; char *firmware; bool iommu; + bool suppress_vmdesc; ram_addr_t ram_size; ram_addr_t maxram_size; |