提交 1bfe5f05 编写于 作者: J Juan Quintela

migration: Move check_migratable() into qdev.c

The function is only used once, and nothing else in migration knows
about objects.  Create the function vmstate_device_is_migratable() in
savem.c that really do the bit that is related with migration.
Signed-off-by: NJuan Quintela <quintela@redhat.com>
Reviewed-by: NPeter Xu <peterx@redhat.com>
上级 bac3b212
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#include "hw/boards.h" #include "hw/boards.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qapi-event.h" #include "qapi-event.h"
#include "migration/migration.h" #include "migration/vmstate.h"
bool qdev_hotplug = false; bool qdev_hotplug = false;
static bool qdev_hot_added = false; static bool qdev_hot_added = false;
...@@ -861,6 +861,20 @@ static bool device_get_realized(Object *obj, Error **errp) ...@@ -861,6 +861,20 @@ static bool device_get_realized(Object *obj, Error **errp)
return dev->realized; return dev->realized;
} }
static bool check_only_migratable(Object *obj, Error **err)
{
DeviceClass *dc = DEVICE_GET_CLASS(obj);
if (!vmstate_check_only_migratable(dc->vmsd)) {
error_setg(err, "Device %s is not migratable, but "
"--only-migratable was specified",
object_get_typename(obj));
return false;
}
return true;
}
static void device_set_realized(Object *obj, bool value, Error **errp) static void device_set_realized(Object *obj, bool value, Error **errp)
{ {
DeviceState *dev = DEVICE(obj); DeviceState *dev = DEVICE(obj);
...@@ -870,7 +884,6 @@ static void device_set_realized(Object *obj, bool value, Error **errp) ...@@ -870,7 +884,6 @@ static void device_set_realized(Object *obj, bool value, Error **errp)
Error *local_err = NULL; Error *local_err = NULL;
bool unattached_parent = false; bool unattached_parent = false;
static int unattached_count; static int unattached_count;
int ret;
if (dev->hotplugged && !dc->hotpluggable) { if (dev->hotplugged && !dc->hotpluggable) {
error_setg(errp, QERR_DEVICE_NO_HOTPLUG, object_get_typename(obj)); error_setg(errp, QERR_DEVICE_NO_HOTPLUG, object_get_typename(obj));
...@@ -878,8 +891,7 @@ static void device_set_realized(Object *obj, bool value, Error **errp) ...@@ -878,8 +891,7 @@ static void device_set_realized(Object *obj, bool value, Error **errp)
} }
if (value && !dev->realized) { if (value && !dev->realized) {
ret = check_migratable(obj, &local_err); if (!check_only_migratable(obj, &local_err)) {
if (ret < 0) {
goto fail; goto fail;
} }
......
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
#include "qapi-types.h" #include "qapi-types.h"
#include "exec/cpu-common.h" #include "exec/cpu-common.h"
#include "qemu/coroutine_int.h" #include "qemu/coroutine_int.h"
#include "qom/object.h"
#define QEMU_VM_FILE_MAGIC 0x5145564d #define QEMU_VM_FILE_MAGIC 0x5145564d
#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
...@@ -39,9 +38,6 @@ ...@@ -39,9 +38,6 @@
#define QEMU_VM_COMMAND 0x08 #define QEMU_VM_COMMAND 0x08
#define QEMU_VM_SECTION_FOOTER 0x7e #define QEMU_VM_SECTION_FOOTER 0x7e
/* for vl.c */
extern int only_migratable;
struct MigrationParams { struct MigrationParams {
bool blk; bool blk;
bool shared; bool shared;
...@@ -253,8 +249,6 @@ int ram_discard_range(const char *block_name, uint64_t start, size_t length); ...@@ -253,8 +249,6 @@ int ram_discard_range(const char *block_name, uint64_t start, size_t length);
int ram_postcopy_incoming_init(MigrationIncomingState *mis); int ram_postcopy_incoming_init(MigrationIncomingState *mis);
void ram_postcopy_migrated_memory_release(MigrationState *ms); void ram_postcopy_migrated_memory_release(MigrationState *ms);
int check_migratable(Object *obj, Error **err);
bool migrate_release_ram(void); bool migrate_release_ram(void);
bool migrate_postcopy_ram(void); bool migrate_postcopy_ram(void);
bool migrate_zero_blocks(void); bool migrate_zero_blocks(void);
......
...@@ -1067,4 +1067,6 @@ int64_t self_announce_delay(int round) ...@@ -1067,4 +1067,6 @@ int64_t self_announce_delay(int round)
void dump_vmstate_json_to_file(FILE *out_fp); void dump_vmstate_json_to_file(FILE *out_fp);
bool vmstate_check_only_migratable(const VMStateDescription *vmsd);
#endif #endif
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
/* vl.c */ /* vl.c */
extern const char *bios_name; extern const char *bios_name;
extern int only_migratable;
extern const char *qemu_name; extern const char *qemu_name;
extern QemuUUID qemu_uuid; extern QemuUUID qemu_uuid;
extern bool qemu_uuid_set; extern bool qemu_uuid_set;
......
...@@ -1143,21 +1143,6 @@ void migrate_del_blocker(Error *reason) ...@@ -1143,21 +1143,6 @@ void migrate_del_blocker(Error *reason)
migration_blockers = g_slist_remove(migration_blockers, reason); migration_blockers = g_slist_remove(migration_blockers, reason);
} }
int check_migratable(Object *obj, Error **err)
{
DeviceClass *dc = DEVICE_GET_CLASS(obj);
if (only_migratable && dc->vmsd) {
if (dc->vmsd->unmigratable) {
error_setg(err, "Device %s is not migratable, but "
"--only-migratable was specified",
object_get_typename(obj));
return -1;
}
}
return 0;
}
void qmp_migrate_incoming(const char *uri, Error **errp) void qmp_migrate_incoming(const char *uri, Error **errp)
{ {
Error *local_err = NULL; Error *local_err = NULL;
......
...@@ -2317,3 +2317,13 @@ void vmstate_register_ram_global(MemoryRegion *mr) ...@@ -2317,3 +2317,13 @@ void vmstate_register_ram_global(MemoryRegion *mr)
{ {
vmstate_register_ram(mr, NULL); vmstate_register_ram(mr, NULL);
} }
bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
{
/* check needed if --only-migratable is specified */
if (!only_migratable) {
return true;
}
return !(vmsd && vmsd->unmigratable);
}
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "migration/vmstate.h" #include "migration/vmstate.h"
#include "migration/migration.h"
const VMStateDescription vmstate_dummy = {}; const VMStateDescription vmstate_dummy = {};
...@@ -21,7 +20,7 @@ void vmstate_unregister(DeviceState *dev, ...@@ -21,7 +20,7 @@ void vmstate_unregister(DeviceState *dev,
{ {
} }
int check_migratable(Object *obj, Error **err) bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
{ {
return 0; return true;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册