92920cd782
We called it from a single place, and always with state != MIG_STATE_ACTIVE. Just remove the whole callback. For users of the notifier, notice that this is exactly the case where they don't care, we are just freeing the state from previous failed migration (it can't be a sucessful one, otherwise we would not be running on that machine in the first place). Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
101 lines
2.5 KiB
C
101 lines
2.5 KiB
C
/*
|
|
* QEMU live migration
|
|
*
|
|
* 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 QEMU_MIGRATION_H
|
|
#define QEMU_MIGRATION_H
|
|
|
|
#include "qdict.h"
|
|
#include "qemu-common.h"
|
|
#include "notify.h"
|
|
|
|
enum {
|
|
MIG_STATE_ERROR,
|
|
MIG_STATE_SETUP,
|
|
MIG_STATE_CANCELLED,
|
|
MIG_STATE_ACTIVE,
|
|
MIG_STATE_COMPLETED,
|
|
};
|
|
|
|
typedef struct MigrationState MigrationState;
|
|
|
|
struct MigrationState
|
|
{
|
|
int64_t bandwidth_limit;
|
|
QEMUFile *file;
|
|
int fd;
|
|
Monitor *mon;
|
|
int state;
|
|
int (*get_error)(MigrationState *s);
|
|
int (*close)(MigrationState *s);
|
|
int (*write)(MigrationState *s, const void *buff, size_t size);
|
|
void (*cancel)(MigrationState *s);
|
|
int (*get_status)(MigrationState *s);
|
|
void *opaque;
|
|
int blk;
|
|
int shared;
|
|
};
|
|
|
|
void process_incoming_migration(QEMUFile *f);
|
|
|
|
int qemu_start_incoming_migration(const char *uri);
|
|
|
|
int do_migrate(Monitor *mon, const QDict *qdict, QObject **ret_data);
|
|
|
|
int do_migrate_cancel(Monitor *mon, const QDict *qdict, QObject **ret_data);
|
|
|
|
int do_migrate_set_speed(Monitor *mon, const QDict *qdict, QObject **ret_data);
|
|
|
|
uint64_t migrate_max_downtime(void);
|
|
|
|
int do_migrate_set_downtime(Monitor *mon, const QDict *qdict,
|
|
QObject **ret_data);
|
|
|
|
void do_info_migrate_print(Monitor *mon, const QObject *data);
|
|
|
|
void do_info_migrate(Monitor *mon, QObject **ret_data);
|
|
|
|
int exec_start_incoming_migration(const char *host_port);
|
|
|
|
int exec_start_outgoing_migration(MigrationState *s, const char *host_port);
|
|
|
|
int tcp_start_incoming_migration(const char *host_port);
|
|
|
|
int tcp_start_outgoing_migration(MigrationState *s, const char *host_port);
|
|
|
|
int unix_start_incoming_migration(const char *path);
|
|
|
|
int unix_start_outgoing_migration(MigrationState *s, const char *path);
|
|
|
|
int fd_start_incoming_migration(const char *path);
|
|
|
|
int fd_start_outgoing_migration(MigrationState *s, const char *fdname);
|
|
|
|
void migrate_fd_error(MigrationState *s);
|
|
|
|
void migrate_fd_connect(MigrationState *s);
|
|
|
|
void add_migration_state_change_notifier(Notifier *notify);
|
|
void remove_migration_state_change_notifier(Notifier *notify);
|
|
int get_migration_state(void);
|
|
|
|
uint64_t ram_bytes_remaining(void);
|
|
uint64_t ram_bytes_transferred(void);
|
|
uint64_t ram_bytes_total(void);
|
|
|
|
int ram_save_live(Monitor *mon, QEMUFile *f, int stage, void *opaque);
|
|
int ram_load(QEMUFile *f, void *opaque, int version_id);
|
|
|
|
extern int incoming_expected;
|
|
|
|
#endif
|