2023-04-28 21:49:21 +02:00
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "qemu/notify.h"
|
|
|
|
#include "net/colo-compare.h"
|
|
|
|
#include "migration/colo.h"
|
|
|
|
#include "qemu/error-report.h"
|
|
|
|
#include "qapi/qapi-commands-migration.h"
|
|
|
|
|
|
|
|
void colo_shutdown(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-05-15 15:06:40 +02:00
|
|
|
int coroutine_fn colo_incoming_co(void)
|
2023-04-28 21:49:21 +02:00
|
|
|
{
|
2023-05-15 15:06:40 +02:00
|
|
|
return 0;
|
2023-04-28 21:49:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void colo_checkpoint_delay_set(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void migrate_start_colo_process(MigrationState *s)
|
|
|
|
{
|
2023-08-03 15:06:54 +02:00
|
|
|
error_report("Impossible happened: trying to start COLO when COLO "
|
2023-04-28 21:49:21 +02:00
|
|
|
"module is not built in");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool migration_in_colo_state(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool migration_incoming_in_colo_state(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|