icount: Take iothread lock when running QEMU timers
[qemu/ar7.git] / migration / target.c
blob907ebf0a0affe6d88a20a23228670e5ee42d6904
1 /*
2 * QEMU live migration - functions that need to be compiled target-specific
4 * This work is licensed under the terms of the GNU GPL, version 2
5 * or (at your option) any later version.
6 */
8 #include "qemu/osdep.h"
9 #include "qapi/qapi-types-migration.h"
10 #include "migration.h"
12 #ifdef CONFIG_VFIO
13 #include "hw/vfio/vfio-common.h"
14 #endif
16 void populate_vfio_info(MigrationInfo *info)
18 #ifdef CONFIG_VFIO
19 if (vfio_mig_active()) {
20 info->has_vfio = true;
21 info->vfio = g_malloc0(sizeof(*info->vfio));
22 info->vfio->transferred = vfio_mig_bytes_transferred();
24 #endif