2017-04-17 21:26:27 +03:00
|
|
|
/*
|
|
|
|
* QEMU migration miscellaneus exported functions
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2008
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MIGRATION_MISC_H
|
|
|
|
#define MIGRATION_MISC_H
|
|
|
|
|
2017-04-24 17:51:10 +03:00
|
|
|
#include "qemu/notify.h"
|
2019-02-27 16:24:06 +03:00
|
|
|
#include "qapi/qapi-types-net.h"
|
2017-04-24 17:51:10 +03:00
|
|
|
|
2017-04-17 21:26:27 +03:00
|
|
|
/* migration/ram.c */
|
|
|
|
|
2018-12-11 11:24:51 +03:00
|
|
|
typedef enum PrecopyNotifyReason {
|
|
|
|
PRECOPY_NOTIFY_SETUP = 0,
|
|
|
|
PRECOPY_NOTIFY_BEFORE_BITMAP_SYNC = 1,
|
|
|
|
PRECOPY_NOTIFY_AFTER_BITMAP_SYNC = 2,
|
|
|
|
PRECOPY_NOTIFY_COMPLETE = 3,
|
|
|
|
PRECOPY_NOTIFY_CLEANUP = 4,
|
|
|
|
PRECOPY_NOTIFY_MAX = 5,
|
|
|
|
} PrecopyNotifyReason;
|
|
|
|
|
|
|
|
typedef struct PrecopyNotifyData {
|
|
|
|
enum PrecopyNotifyReason reason;
|
|
|
|
Error **errp;
|
|
|
|
} PrecopyNotifyData;
|
|
|
|
|
|
|
|
void precopy_infrastructure_init(void);
|
|
|
|
void precopy_add_notifier(NotifierWithReturn *n);
|
|
|
|
void precopy_remove_notifier(NotifierWithReturn *n);
|
|
|
|
int precopy_notify(PrecopyNotifyReason reason, Error **errp);
|
|
|
|
|
2017-04-17 21:26:27 +03:00
|
|
|
void ram_mig_init(void);
|
2018-12-11 11:24:50 +03:00
|
|
|
void qemu_guest_free_page_hint(void *addr, size_t len);
|
2017-04-17 21:26:27 +03:00
|
|
|
|
2017-04-21 15:31:22 +03:00
|
|
|
/* migration/block.c */
|
|
|
|
|
|
|
|
#ifdef CONFIG_LIVE_BLOCK_MIGRATION
|
|
|
|
void blk_mig_init(void);
|
|
|
|
#else
|
|
|
|
static inline void blk_mig_init(void) {}
|
|
|
|
#endif
|
|
|
|
|
2019-02-27 16:24:06 +03:00
|
|
|
AnnounceParameters *migrate_announce_params(void);
|
2017-04-24 14:51:10 +03:00
|
|
|
/* migration/savevm.c */
|
|
|
|
|
|
|
|
void dump_vmstate_json_to_file(FILE *out_fp);
|
2017-04-24 20:02:44 +03:00
|
|
|
|
|
|
|
/* migration/migration.c */
|
2017-06-27 07:10:13 +03:00
|
|
|
void migration_object_init(void);
|
2019-02-27 19:49:00 +03:00
|
|
|
void migration_shutdown(void);
|
2017-04-24 20:02:44 +03:00
|
|
|
bool migration_is_idle(void);
|
2019-07-17 03:53:41 +03:00
|
|
|
bool migration_is_active(MigrationState *);
|
2017-04-24 20:02:44 +03:00
|
|
|
void add_migration_state_change_notifier(Notifier *notify);
|
|
|
|
void remove_migration_state_change_notifier(Notifier *notify);
|
|
|
|
bool migration_in_setup(MigrationState *);
|
|
|
|
bool migration_has_finished(MigrationState *);
|
|
|
|
bool migration_has_failed(MigrationState *);
|
|
|
|
/* ...and after the device transmission */
|
|
|
|
bool migration_in_postcopy_after_devices(MigrationState *);
|
2017-06-27 07:10:19 +03:00
|
|
|
void migration_global_dump(Monitor *mon);
|
2020-06-26 10:22:33 +03:00
|
|
|
/* True if incomming migration entered POSTCOPY_INCOMING_DISCARD */
|
|
|
|
bool migration_in_incoming_postcopy(void);
|
2021-04-01 12:22:24 +03:00
|
|
|
/* True if background snapshot is active */
|
|
|
|
bool migration_in_bg_snapshot(void);
|
2017-06-27 07:10:15 +03:00
|
|
|
|
2018-03-13 22:34:01 +03:00
|
|
|
/* migration/block-dirty-bitmap.c */
|
|
|
|
void dirty_bitmap_mig_init(void);
|
|
|
|
|
2017-04-17 21:26:27 +03:00
|
|
|
#endif
|