2017-04-17 20:26:27 +02: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 16:51:10 +02:00
|
|
|
#include "qemu/notify.h"
|
2019-02-27 14:24:06 +01:00
|
|
|
#include "qapi/qapi-types-net.h"
|
2017-04-24 16:51:10 +02:00
|
|
|
|
2017-04-17 20:26:27 +02:00
|
|
|
/* migration/ram.c */
|
|
|
|
|
2018-12-11 09:24:51 +01: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 20:26:27 +02:00
|
|
|
void ram_mig_init(void);
|
2018-12-11 09:24:50 +01:00
|
|
|
void qemu_guest_free_page_hint(void *addr, size_t len);
|
2023-07-06 09:56:08 +02:00
|
|
|
bool migrate_ram_is_ignored(RAMBlock *block);
|
2017-04-17 20:26:27 +02:00
|
|
|
|
2017-04-21 14:31:22 +02: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 14:24:06 +01:00
|
|
|
AnnounceParameters *migrate_announce_params(void);
|
2017-04-24 13:51:10 +02:00
|
|
|
/* migration/savevm.c */
|
|
|
|
|
|
|
|
void dump_vmstate_json_to_file(FILE *out_fp);
|
2017-04-24 19:02:44 +02:00
|
|
|
|
|
|
|
/* migration/migration.c */
|
2017-06-27 06:10:13 +02:00
|
|
|
void migration_object_init(void);
|
2019-02-27 17:49:00 +01:00
|
|
|
void migration_shutdown(void);
|
2017-04-24 19:02:44 +02:00
|
|
|
bool migration_is_idle(void);
|
2019-07-17 02:53:41 +02:00
|
|
|
bool migration_is_active(MigrationState *);
|
2023-06-07 16:42:34 +02:00
|
|
|
void migration_add_notifier(Notifier *notify,
|
|
|
|
void (*func)(Notifier *notifier, void *data));
|
|
|
|
void migration_remove_notifier(Notifier *notify);
|
|
|
|
void migration_call_notifiers(MigrationState *s);
|
2017-04-24 19:02:44 +02:00
|
|
|
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 *);
|
2023-01-17 12:22:46 +01:00
|
|
|
/* True if incoming migration entered POSTCOPY_INCOMING_DISCARD */
|
2020-06-26 09:22:33 +02:00
|
|
|
bool migration_in_incoming_postcopy(void);
|
2023-01-17 12:22:46 +01:00
|
|
|
/* True if incoming migration entered POSTCOPY_INCOMING_ADVISE */
|
|
|
|
bool migration_incoming_postcopy_advised(void);
|
2021-04-01 11:22:24 +02:00
|
|
|
/* True if background snapshot is active */
|
|
|
|
bool migration_in_bg_snapshot(void);
|
2017-06-27 06:10:15 +02:00
|
|
|
|
2018-03-13 20:34:01 +01:00
|
|
|
/* migration/block-dirty-bitmap.c */
|
|
|
|
void dirty_bitmap_mig_init(void);
|
|
|
|
|
2017-04-17 20:26:27 +02:00
|
|
|
#endif
|