[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 01/12] migration: export MIG_STATE_xxx flags
From: |
Lei Li |
Subject: |
[Qemu-devel] [PATCH 01/12] migration: export MIG_STATE_xxx flags |
Date: |
Fri, 26 Jul 2013 04:18:08 +0800 |
Signed-off-by: Lei Li <address@hidden>
---
include/migration/migration.h | 9 +++++++++
migration.c | 8 --------
2 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/include/migration/migration.h b/include/migration/migration.h
index e2acec6..a821c80 100644
--- a/include/migration/migration.h
+++ b/include/migration/migration.h
@@ -27,6 +27,15 @@ struct MigrationParams {
bool shared;
};
+/* Migration status */
+enum {
+ MIG_STATE_ERROR, /* There has been an error. */
+ MIG_STATE_SETUP, /* Setup stage for a migration. */
+ MIG_STATE_CANCELLED, /* The migration has been cancelled. */
+ MIG_STATE_ACTIVE, /* Whether the migration is active. */
+ MIG_STATE_COMPLETED, /* The migration is successful completed. */
+};
+
typedef struct MigrationState MigrationState;
struct MigrationState
diff --git a/migration.c b/migration.c
index 058f9e6..0921ace 100644
--- a/migration.c
+++ b/migration.c
@@ -35,14 +35,6 @@
do { } while (0)
#endif
-enum {
- MIG_STATE_ERROR,
- MIG_STATE_SETUP,
- MIG_STATE_CANCELLED,
- MIG_STATE_ACTIVE,
- MIG_STATE_COMPLETED,
-};
-
#define MAX_THROTTLE (32 << 20) /* Migration speed throttling */
/* Amount of time to allocate to each "chunk" of bandwidth-throttled
--
1.7.7.6
- [Qemu-devel] [PATCH 0/12 RFC v2] Localhost migration, Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 04/12] arch_init: introduce ram_page_save(), Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 03/12] rename is_active to is_block_active, Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 02/12] savevm: export qemu_save_device_state(), Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 05/12] arch_init: introduce ram_save_local(), Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 06/12] arch_init: add save_local_setup to savevm_ram_handlers, Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 07/12] savevm: introduce qemu_savevm_local(), Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 08/12] savevm: adjust is_ram check in register_savevm_live(), Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 01/12] migration: export MIG_STATE_xxx flags,
Lei Li <=
- [Qemu-devel] [PATCH 12/12] hmp: add hmp_localhost_migration interface, Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 10/12] migration-local: implementation of incoming part, Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 09/12] migration-local: implementation of outgoing part, Lei Li, 2013/07/25
- [Qemu-devel] [PATCH 11/12] migration-local: add option to commandline for incoming-local, Lei Li, 2013/07/25
- Re: [Qemu-devel] [PATCH 0/12 RFC v2] Localhost migration, Paolo Bonzini, 2013/07/26