COLO: Add 'x-colo-lost-heartbeat' command to trigger failover
[qemu/ar7.git] / include / migration / colo.h
blobe9ac2c343af65252946a2a7ee8fe104ac7fdf5c5
1 /*
2 * COarse-grain LOck-stepping Virtual Machines for Non-stop Service (COLO)
3 * (a.k.a. Fault Tolerance or Continuous Replication)
5 * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
6 * Copyright (c) 2016 FUJITSU LIMITED
7 * Copyright (c) 2016 Intel Corporation
9 * This work is licensed under the terms of the GNU GPL, version 2 or
10 * later. See the COPYING file in the top-level directory.
13 #ifndef QEMU_COLO_H
14 #define QEMU_COLO_H
16 #include "qemu-common.h"
17 #include "migration/migration.h"
18 #include "qemu/coroutine_int.h"
19 #include "qemu/thread.h"
20 #include "qemu/main-loop.h"
22 bool colo_supported(void);
23 void colo_info_init(void);
25 void migrate_start_colo_process(MigrationState *s);
26 bool migration_in_colo_state(void);
28 /* loadvm */
29 bool migration_incoming_enable_colo(void);
30 void migration_incoming_exit_colo(void);
31 void *colo_process_incoming_thread(void *opaque);
32 bool migration_incoming_in_colo_state(void);
34 COLOMode get_colo_mode(void);
35 #endif