ppc/pnv: quad xscom callbacks are P9 specific
[qemu/kevin.git] / migration / target.c
blobf39c9a8d88775648816d46113843ef58198c86fd
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"
11 #include CONFIG_DEVICES
13 #ifdef CONFIG_VFIO
14 #include "hw/vfio/vfio-common.h"
15 #endif
17 #ifdef CONFIG_VFIO
18 void populate_vfio_info(MigrationInfo *info)
20 if (vfio_mig_active()) {
21 info->vfio = g_malloc0(sizeof(*info->vfio));
22 info->vfio->transferred = vfio_mig_bytes_transferred();
26 void reset_vfio_bytes_transferred(void)
28 vfio_reset_bytes_transferred();
30 #else
31 void populate_vfio_info(MigrationInfo *info)
35 void reset_vfio_bytes_transferred(void)
38 #endif