summaryrefslogtreecommitdiffstats
path: root/qemu/docs/xen-save-devices-state.txt
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/docs/xen-save-devices-state.txt
parenta14b48d18a9ed03ec191cf16b162206998a895ce (diff)
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to kvmfornfv repo and make use of the updated latest qemu for the execution of all testcase Change-Id: I1280af507a857675c7f81d30c95255635667bdd7 Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/docs/xen-save-devices-state.txt')
-rw-r--r--qemu/docs/xen-save-devices-state.txt34
1 files changed, 0 insertions, 34 deletions
diff --git a/qemu/docs/xen-save-devices-state.txt b/qemu/docs/xen-save-devices-state.txt
deleted file mode 100644
index 92e08dbf6..000000000
--- a/qemu/docs/xen-save-devices-state.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-= Save Devices =
-
-QEMU has code to load/save the state of the guest that it is running.
-These are two complementary operations. Saving the state just does
-that, saves the state for each device that the guest is running.
-
-These operations are normally used with migration (see migration.txt),
-however it is also possible to save the state of all devices to file,
-without saving the RAM or the block devices of the VM.
-
-This operation is called "xen-save-devices-state" (see
-QMP/qmp-commands.txt)
-
-
-The binary format used in the file is the following:
-
-
--------------------------------------------
-
-32 bit big endian: QEMU_VM_FILE_MAGIC
-32 bit big endian: QEMU_VM_FILE_VERSION
-
-for_each_device
-{
- 8 bit: QEMU_VM_SECTION_FULL
- 32 bit big endian: section_id
- 8 bit: idstr (ID string) length
- string: idstr (ID string)
- 32 bit big endian: instance_id
- 32 bit big endian: version_id
- buffer: device specific data
-}
-
-8 bit: QEMU_VM_EOF