From: Juan Quintela Date: Mon, 24 Apr 2017 11:51:10 +0000 (+0200) Subject: migration: Move dump_vmsate_json_to_file() to misc.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b7722747e4df3d3fe5e3a212974fa4ec01968edd;p=qemu.git migration: Move dump_vmsate_json_to_file() to misc.h It was not from vmstate.c to start with. Signed-off-by: Juan Quintela Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Peter Xu Reviewed-by: Laurent Vivier --- diff --git a/include/migration/misc.h b/include/migration/misc.h index 60486d4066..026b561601 100644 --- a/include/migration/misc.h +++ b/include/migration/misc.h @@ -36,4 +36,8 @@ int64_t self_announce_delay(int round) return 50 + (SELF_ANNOUNCE_ROUNDS - round - 1) * 100; } +/* migration/savevm.c */ + +void dump_vmstate_json_to_file(FILE *out_fp); + #endif diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h index 9ad4ba1a9b..79a4b350a8 100644 --- a/include/migration/vmstate.h +++ b/include/migration/vmstate.h @@ -1003,8 +1003,6 @@ void vmstate_register_ram(struct MemoryRegion *memory, DeviceState *dev); void vmstate_unregister_ram(struct MemoryRegion *memory, DeviceState *dev); void vmstate_register_ram_global(struct MemoryRegion *memory); -void dump_vmstate_json_to_file(FILE *out_fp); - bool vmstate_check_only_migratable(const VMStateDescription *vmsd); #endif