qxl: call qemu_spice_display_init_common for secondary devices
[qemu/ar7.git] / migration / block.h
blob22ebe9425915832b2e682d158e823c8039d4f026
1 /*
2 * QEMU live block migration
4 * Copyright IBM, Corp. 2009
6 * Authors:
7 * Liran Schour <lirans@il.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #ifndef MIGRATION_BLOCK_H
15 #define MIGRATION_BLOCK_H
17 #ifdef CONFIG_LIVE_BLOCK_MIGRATION
18 int blk_mig_active(void);
19 uint64_t blk_mig_bytes_transferred(void);
20 uint64_t blk_mig_bytes_remaining(void);
21 uint64_t blk_mig_bytes_total(void);
23 #else
24 static inline int blk_mig_active(void)
26 return false;
28 static inline uint64_t blk_mig_bytes_transferred(void)
30 return 0;
33 static inline uint64_t blk_mig_bytes_remaining(void)
35 return 0;
38 static inline uint64_t blk_mig_bytes_total(void)
40 return 0;
42 #endif /* CONFIG_LIVE_BLOCK_MIGRATION */
44 void migrate_set_block_enabled(bool value, Error **errp);
45 #endif /* MIGRATION_BLOCK_H */