2016-01-29 20:49:52 +03:00
|
|
|
#include "qemu/osdep.h"
|
2012-12-05 20:49:08 +04:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "migration/vmstate.h"
|
|
|
|
|
2013-02-18 20:56:20 +04:00
|
|
|
const VMStateDescription vmstate_dummy = {};
|
|
|
|
|
2012-12-05 20:49:08 +04:00
|
|
|
int vmstate_register_with_alias_id(DeviceState *dev,
|
|
|
|
int instance_id,
|
|
|
|
const VMStateDescription *vmsd,
|
|
|
|
void *base, int alias_id,
|
2017-02-02 15:59:54 +03:00
|
|
|
int required_for_version,
|
|
|
|
Error **errp)
|
2012-12-05 20:49:08 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void vmstate_unregister(DeviceState *dev,
|
|
|
|
const VMStateDescription *vmsd,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
}
|
2017-02-13 21:04:48 +03:00
|
|
|
|
2017-04-17 15:57:54 +03:00
|
|
|
bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
|
2017-02-13 21:04:48 +03:00
|
|
|
{
|
2017-04-17 15:57:54 +03:00
|
|
|
return true;
|
2017-02-13 21:04:48 +03:00
|
|
|
}
|