mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-04 05:30:31 -07:00
migration: Move constants to savevm.h
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Laurent Vivier <lvivier@redhat.com>
This commit is contained in:
parent
b7722747e4
commit
c3d2e2e76c
4 changed files with 17 additions and 15 deletions
|
|
@ -14,6 +14,21 @@
|
|||
#ifndef MIGRATION_SAVEVM_H
|
||||
#define MIGRATION_SAVEVM_H
|
||||
|
||||
#define QEMU_VM_FILE_MAGIC 0x5145564d
|
||||
#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
|
||||
#define QEMU_VM_FILE_VERSION 0x00000003
|
||||
|
||||
#define QEMU_VM_EOF 0x00
|
||||
#define QEMU_VM_SECTION_START 0x01
|
||||
#define QEMU_VM_SECTION_PART 0x02
|
||||
#define QEMU_VM_SECTION_END 0x03
|
||||
#define QEMU_VM_SECTION_FULL 0x04
|
||||
#define QEMU_VM_SUBSECTION 0x05
|
||||
#define QEMU_VM_VMDESCRIPTION 0x06
|
||||
#define QEMU_VM_CONFIGURATION 0x07
|
||||
#define QEMU_VM_COMMAND 0x08
|
||||
#define QEMU_VM_SECTION_FOOTER 0x7e
|
||||
|
||||
bool qemu_savevm_state_blocked(Error **errp);
|
||||
void qemu_savevm_state_begin(QEMUFile *f);
|
||||
void qemu_savevm_state_header(QEMUFile *f);
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
#include "qemu-common.h"
|
||||
#include "migration/migration.h"
|
||||
#include "migration/vmstate.h"
|
||||
#include "migration/savevm.h"
|
||||
#include "qemu-file.h"
|
||||
#include "qemu/bitops.h"
|
||||
#include "qemu/error-report.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue